1# @(#)Makefile 8.5 (Berkeley) 3/31/94 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6# XXX MISSING: icheck ncheck 7 8SUBDIR=adjkerntz \ 9 badsect \ 10 camcontrol \ 11 ccdconfig \ 12 clri \ 13 comcontrol \ 14 conscontrol \ 15 ddb \ 16 devfs \ 17 dhclient \ 18 dmesg \ 19 dump \ 20 dumpfs \ 21 dumpon \ 22 etherswitchcfg \ 23 ffsinfo \ 24 fsck \ 25 fsck_ffs \ 26 fsck_msdosfs \ 27 fsdb \ 28 fsirand \ 29 gbde \ 30 geom \ 31 ggate \ 32 growfs \ 33 gvinum \ 34 hastctl \ 35 hastd \ 36 ifconfig \ 37 init \ 38 iscontrol \ 39 kldconfig \ 40 kldload \ 41 kldstat \ 42 kldunload \ 43 ldconfig \ 44 md5 \ 45 mdconfig \ 46 mdmfs \ 47 mknod \ 48 mksnap_ffs \ 49 mount \ 50 mount_cd9660 \ 51 mount_fusefs \ 52 mount_msdosfs \ 53 mount_nfs \ 54 mount_nullfs \ 55 mount_udf \ 56 mount_unionfs \ 57 newfs \ 58 newfs_msdos \ 59 nfsiod \ 60 nos-tun \ 61 ping \ 62 rcorder \ 63 reboot \ 64 recoverdisk \ 65 resolvconf \ 66 restore \ 67 route \ 68 savecore \ 69 setkey \ 70 shutdown \ 71 spppcontrol \ 72 swapon \ 73 sysctl \ 74 tunefs \ 75 umount 76 77.if ${MK_ATM} != "no" 78SUBDIR+= atm 79.endif 80 81.if ${MK_CASPER} != "no" 82SUBDIR+= casperd 83.endif 84 85.if ${MK_CXX} != "no" 86SUBDIR+= devd 87.endif 88 89.if ${MK_IPFILTER} != "no" 90SUBDIR+= ipf 91.endif 92 93.if ${MK_IPFW} != "no" 94SUBDIR+= ipfw 95SUBDIR+= natd 96.endif 97 98.if ${MK_NAND} != "no" 99SUBDIR+= nandfs 100SUBDIR+= newfs_nandfs 101.endif 102 103.if ${MK_PF} != "no" 104SUBDIR+= pfctl 105SUBDIR+= pflogd 106.endif 107 108.if ${MK_INET6} != "no" 109SUBDIR+= ping6 110SUBDIR+= rtsol 111.endif 112 113.if ${MK_QUOTAS} != "no" 114SUBDIR+= quotacheck 115.endif 116 117.if ${MK_ROUTED} != "no" 118SUBDIR+= routed 119.endif 120 121.if ${MK_TESTS} != "no" 122SUBDIR+= tests 123.endif 124 125.include <bsd.arch.inc.mk> 126 127SUBDIR:= ${SUBDIR:O} 128 129SUBDIR_PARALLEL= 130 131.include <bsd.subdir.mk> 132