84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
29 lines
684 B
Makefile
29 lines
684 B
Makefile
# $NetBSD: Makefile,v 1.79 2013/03/01 18:25:27 joerg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= arch dev fs \
|
|
net netinet netinet6 \
|
|
\
|
|
sys ufs uvm
|
|
|
|
.if !defined(__MINIX)
|
|
# LSC the test is OR, but as it is not relevant to MINIX, we have
|
|
# to completly ignore this.
|
|
|
|
# interrupt implementation depends on the kernel within the port
|
|
#.if (${MACHINE} != "evbppc")
|
|
.if make(obj) || make(cleandir) || ${MKKMOD} != "no"
|
|
SUBDIR+=modules
|
|
.endif
|
|
#.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
# LSC FIXME: Remove this test as soon as we have imported RUMP
|
|
.if !defined(__MINIX)
|
|
.if make(includes) || make(obj) || make(cleandir)
|
|
SUBDIR+= rump
|
|
.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
.include <bsd.kinc.mk>
|