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
81 lines
1.0 KiB
Makefile
81 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.271 2015/08/17 06:42:46 knakahara Exp $
|
|
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= \
|
|
\
|
|
chroot \
|
|
\
|
|
\
|
|
\
|
|
\
|
|
\
|
|
i2cscan installboot \
|
|
\
|
|
\
|
|
link \
|
|
makefs \
|
|
mtree \
|
|
\
|
|
\
|
|
pwd_mkdb postinstall \
|
|
\
|
|
\
|
|
rdate \
|
|
\
|
|
\
|
|
\
|
|
syslogd \
|
|
traceroute \
|
|
unlink user \
|
|
vipw vnconfig \
|
|
\
|
|
zdump zic
|
|
|
|
.if !defined(__MINIX)
|
|
.if ${MKMAKEMANDB} != "no"
|
|
SUBDIR+= makemandb
|
|
.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
.if (${MKYP} != "no")
|
|
SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
|
|
.endif
|
|
|
|
.if (${MKRUMP} != "no")
|
|
SUBDIR+= puffs
|
|
.endif
|
|
|
|
.if ${TOOLCHAIN_MISSING} != "no"
|
|
SUBDIR+= mdsetimage
|
|
.endif
|
|
|
|
.if (${MKINET6} != "no")
|
|
SUBDIR+=faithd ifmcstat ndp rip6query rtsold
|
|
.endif
|
|
.if (${USE_INET6} != "no")
|
|
SUBDIR+=mld6query route6d rtadvd traceroute6
|
|
.endif
|
|
|
|
.if !defined(__MINIX)
|
|
# ATM PVC
|
|
SUBDIR+=pvcsif pvctxctl
|
|
|
|
.if (${MKCRYPTO} != "no")
|
|
SUBDIR+= racoon racoonctl
|
|
.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
# NPF
|
|
.if (${MKNPF} != "no")
|
|
SUBDIR+=npf
|
|
.endif
|
|
|
|
# PF
|
|
.if (${MKPF} != "no")
|
|
SUBDIR+=pf
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|