5ae1a533c7
. bitcode fixes . switch to compiler-rt instead of netbsd libc functions or libgcc for support functions for both x86 and arm . minor build fixes . allow build with llvm without crossbuilding llvm itself . can now build minix/arm using llvm and eabi - without C++ support for now (hence crossbuilding llvm itself is turned off for minix/arm) Change-Id: If5c44ef766f5b4fc4394d4586ecc289927a0d6eb
42 lines
729 B
Makefile
42 lines
729 B
Makefile
# $NetBSD: Makefile,v 1.45 2013/11/28 22:34:17 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= byacc file flex less \
|
|
libarchive libevent mdocml \
|
|
tmux
|
|
|
|
.if (${MKATF} != "no")
|
|
SUBDIR+= atf
|
|
.endif
|
|
.if (${MKCRYPTO} != "no")
|
|
SUBDIR+= pkg_install
|
|
.endif
|
|
# IP Filter
|
|
.if (${MKIPFILTER} != "no")
|
|
SUBDIR+=ipf
|
|
.endif
|
|
.if (${MKISCSI} != "no")
|
|
SUBDIR+= iscsi
|
|
.endif
|
|
.if (${MKKYUA} != "no")
|
|
SUBDIR+= lutok kyua-testers kyua-cli kyua-atf-compat
|
|
.endif
|
|
.if (${MKLDAP} != "no")
|
|
SUBDIR+= openldap
|
|
.endif
|
|
.if (${MKLIBCXX} != "no")
|
|
SUBDIR+= libc++
|
|
.endif
|
|
.if (${MKLLVM} != "no")
|
|
.if (${MKLLVMCMDS} != "no")
|
|
SUBDIR+= llvm
|
|
.endif # (${MKLLVMCMDS} != "no")
|
|
.endif
|
|
.if (${MKPCC} != "no")
|
|
SUBDIR+= pcc
|
|
.endif
|
|
|
|
SUBDIR+= nvi
|
|
|
|
.include <bsd.subdir.mk>
|