ade08c91dc
Fleming. This one has some nice options -- for example, an admin can run right after installing a system: fpgen -D and it will fingerprint a set of "common" system directories to the default loaction. See the man-page for more stuff. Performance-wise, here are results for both fpgen.sh (old) and this new tool: 474.599u 574.335s 13:53.05 125.9% 0+0k 0+307io 0pf+0w 0.424u 0.131s 0:00.56 98.2% 0+0k 0+2io 0pf+0w ...guess which is which? (that's ~1500 times *faster*)
68 lines
1.8 KiB
Makefile
68 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.220 2006/09/16 20:54:43 elad Exp $
|
|
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ac accton altq amd apm apmd arp bad144 bind bootp \
|
|
btconfig btdevctl bthcid catman \
|
|
chown chroot chrtbl cnwctl cron dev_mkdb \
|
|
dhcp diskpart dumpfs dumplfs edquota eeprom \
|
|
envstat eshconfig etcupdate extattrctl fssconfig fwctl gpioctl \
|
|
grfconfig grfinfo gspa hilinfo ifwatchd inetd installboot \
|
|
iopctl iostat ipwctl irdaattach isdn iteconfig iwictl\
|
|
kgmon lastlogin link lmcconfig lockstat lpr mailwrapper makefs \
|
|
map-mbone mdconfig memswitch mlxctl mopd mountd moused \
|
|
mrinfo mrouted mscdlabel mtrace \
|
|
mtree ndbootd ndiscvt netgroup_mkdb nfsd ntp pcictl pkg_install pppd \
|
|
pstat pwd_mkdb postinstall powerd quot quotacheck quotaon \
|
|
rarpd rbootd rdate \
|
|
repquota rmt rpc.bootparamd rpc.lockd rpc.pcnfsd \
|
|
rpc.statd rpcbind rwhod sa screenblank sdpd services_mkdb sesd \
|
|
sliplogin sntp \
|
|
spray sti sunlabel sup syslogd tadpolectl tcpdchk \
|
|
tcpdmatch tcpdump timed tpctl traceroute trpt unlink \
|
|
usbdevs user videomode vipw veriexecgen vnconfig wiconfig wlanctl wpa \
|
|
wsconscfg wsfontload wsmoused wsmuxctl zdump zic
|
|
|
|
.if (${MKISCSI} != "no")
|
|
SUBDIR+= iscsi
|
|
.endif
|
|
|
|
.if (${MKKERBEROS} != "no")
|
|
SUBDIR+= hprop kadmin kdc kstash ktutil
|
|
.endif
|
|
|
|
.if (${MKYP} != "no")
|
|
SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
|
|
.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
|
|
|
|
# ATM PVC
|
|
SUBDIR+=pvcsif pvctxctl
|
|
|
|
.if (${MKCRYPTO} != "no")
|
|
SUBDIR+= racoon racoonctl
|
|
.endif
|
|
|
|
# IP Filter
|
|
.if (${MKIPFILTER} != "no")
|
|
SUBDIR+=ipf
|
|
.endif
|
|
|
|
# PF
|
|
.if (${MKPF} != "no")
|
|
SUBDIR+=pf
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|