f6aac1c3b5
Moving include/sys NetBSD headers to /sys/sys Moving include/arch/*/ NetBSD headers to /sys/arch/*/include Change-Id: Ia1a45d4e83ab806c84093ec2b61bdbea9bed65a0
29 lines
673 B
Makefile
29 lines
673 B
Makefile
# $NetBSD: Makefile,v 1.78 2012/08/17 16:22:27 joerg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= arch \
|
|
net netinet netinet6 \
|
|
\
|
|
sys ufs
|
|
|
|
.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>
|