xref: /minix/external/bsd/Makefile (revision 84d9c625)
1#	$NetBSD: Makefile,v 1.45 2013/11/28 22:34:17 christos Exp $
2
3.include <bsd.own.mk>
4
5SUBDIR= byacc file flex less \
6	libarchive mdocml \
7
8
9.if (${MKATF} != "no")
10SUBDIR+= atf
11.endif
12.if (${MKCRYPTO} != "no")
13SUBDIR+= pkg_install
14.endif
15# IP Filter
16.if (${MKIPFILTER} != "no")
17SUBDIR+=ipf
18.endif
19.if (${MKISCSI} != "no")
20SUBDIR+= iscsi
21.endif
22.if (defined(__MINIX) && ${MKGCCCMDS} == "yes")
23.if (${MKKYUA} != "no")
24SUBDIR+= lutok kyua-testers kyua-cli kyua-atf-compat
25.endif
26.endif # (defined(__MINIX) && ${MKGCCCMDS} == "yes")
27.if (${MKLDAP} != "no")
28SUBDIR+= openldap
29.endif
30.if (${MKLIBCXX} != "no")
31SUBDIR+= libc++
32.endif
33.if (${MKLLVM} != "no")
34SUBDIR+= llvm
35.endif
36.if (${MKPCC} != "no")
37SUBDIR+= pcc
38.endif
39
40SUBDIR+= nvi
41
42.include <bsd.subdir.mk>
43