1 # $NetBSD: Makefile,v 1.237 2008/10/02 17:54:53 joerg Exp $ 2 # from: @(#)Makefile 5.20 (Berkeley) 6/12/93 3 4 .include <bsd.own.mk> 5 6 SUBDIR= ac accton acpitools altq apm apmd arp bad144 bind bootp \ 7 btattach btconfig btdevctl bthcid btpand catman \ 8 chown chroot chrtbl cnwctl cpuctl cron dev_mkdb \ 9 dhcp diskpart dumpfs dumplfs edquota eeprom \ 10 envstat eshconfig etcupdate extattrctl fssconfig fwctl gpioctl \ 11 grfconfig grfinfo gspa hilinfo ifwatchd inetd installboot \ 12 iopctl iostat ipwctl irdaattach isdn iteconfig iwictl\ 13 kgmon lastlogin link lmcconfig lockstat lpr mailwrapper makefs \ 14 map-mbone mdconfig memswitch mlxctl mmcformat mopd mountd moused \ 15 mrinfo mrouted mscdlabel mtrace \ 16 mtree ndbootd ndiscvt netgroup_mkdb nfsd ntp ofctl paxctl pcictl \ 17 pppd psrset pstat pwd_mkdb postinstall powerd quot quotacheck \ 18 quotaon rarpd rbootd rdate \ 19 repquota rmt rpc.bootparamd rpc.lockd rpc.pcnfsd \ 20 rpc.statd rpcbind rwhod sa screenblank sdpd services_mkdb sesd \ 21 schedctl sliplogin sntp \ 22 spray srtconfig sti sunlabel sup syslogd tadpolectl tcpdchk \ 23 tcpdmatch tcpdump tcpdrop timed tpctl traceroute trpt unlink \ 24 usbdevs user videomode vipw veriexecgen vnconfig wiconfig wlanctl wpa \ 25 wsconscfg wsfontload wsmoused wsmuxctl zdump zic 26 27 .if (${MKISCSI} != "no") 28 SUBDIR+= iscsi 29 .endif 30 31 .if (${MKKERBEROS} != "no") 32 SUBDIR+= hprop kadmin kdc kstash ktutil iprop-log kdigest kimpersonate kcm 33 .endif 34 35 .if (${MKYP} != "no") 36 SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset 37 .endif 38 39 .if ${TOOLCHAIN_MISSING} != "no" 40 SUBDIR+= mdsetimage 41 .endif 42 43 .if (${MKINET6} != "no") 44 SUBDIR+=faithd ifmcstat ndp rip6query rtsold 45 .endif 46 .if (${USE_INET6} != "no") 47 SUBDIR+=mld6query route6d rtadvd traceroute6 48 .endif 49 50 # ATM PVC 51 SUBDIR+=pvcsif pvctxctl 52 53 .if (${MKCRYPTO} != "no") 54 SUBDIR+= racoon racoonctl 55 .endif 56 57 # IP Filter 58 .if (${MKIPFILTER} != "no") 59 SUBDIR+=ipf 60 .endif 61 62 # PF 63 .if (${MKPF} != "no") 64 SUBDIR+=pf 65 .endif 66 67 # puffs 68 .if (${MKPUFFS} != "no") 69 SUBDIR+=puffs fusermount 70 .endif 71 72 .include <bsd.subdir.mk> 73