This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
27 lines
589 B
Makefile
27 lines
589 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)
|
|
# 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>
|