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
83 lines
1 KiB
Makefile
83 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.268 2013/11/28 22:34:44 christos Exp $
|
|
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= \
|
|
\
|
|
chroot \
|
|
\
|
|
\
|
|
\
|
|
\
|
|
\
|
|
i2cscan installboot \
|
|
\
|
|
\
|
|
link \
|
|
\
|
|
mtree \
|
|
\
|
|
\
|
|
pwd_mkdb postinstall \
|
|
\
|
|
\
|
|
rdate \
|
|
\
|
|
\
|
|
\
|
|
\
|
|
unlink user \
|
|
vipw vnconfig \
|
|
\
|
|
zic
|
|
|
|
.if defined(__MINIX)
|
|
# LSC MINIX Specific
|
|
SUBDIR+= mkfs.mfs \
|
|
mkproto
|
|
.else
|
|
.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
|
|
.endif
|
|
|
|
.if (${MKCRYPTO} != "no")
|
|
SUBDIR+= racoon racoonctl
|
|
.endif
|
|
|
|
# NPF
|
|
.if (${MKNPF} != "no")
|
|
SUBDIR+=npf
|
|
.endif
|
|
|
|
# PF
|
|
.if (${MKPF} != "no")
|
|
SUBDIR+=pf
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|