d19d7d58aa
upgrade to NetBSD CVS release from 2012/10/17 12:00:00 UTC Makefiles updates to imporve portability Made sure to be consistent in the usage of braces/parenthesis at least on a per file basis. For variables, it is recommended to continue to use braces.
30 lines
522 B
Makefile
30 lines
522 B
Makefile
# $NetBSD: Makefile,v 1.33 2012/10/08 01:45:11 jkoshy Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= byacc file flex mdocml \
|
|
libarchive
|
|
.if (${MKATF} != "no")
|
|
SUBDIR+= atf
|
|
.endif
|
|
.if (${MKCRYPTO} != "no")
|
|
SUBDIR+= pkg_install ../../crypto/external/bsd
|
|
.endif
|
|
# IP Filter
|
|
.if (${MKIPFILTER} != "no")
|
|
SUBDIR+=ipf
|
|
.endif
|
|
.if (${MKISCSI} != "no")
|
|
SUBDIR+= iscsi
|
|
.endif
|
|
.if (${MKLDAP} != "no")
|
|
SUBDIR+= openldap
|
|
.endif
|
|
.if (${MKLLVM} != "no")
|
|
SUBDIR+= llvm
|
|
.endif
|
|
.if (${MKPCC} != "no")
|
|
SUBDIR+= pcc
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|