1# @(#)Makefile 8.5 (Berkeley) 3/31/94 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6SUBDIR=adjkerntz \ 7 camcontrol \ 8 clri \ 9 comcontrol \ 10 conscontrol \ 11 ddb \ 12 devd \ 13 devfs \ 14 devmatch \ 15 dhclient \ 16 dmesg \ 17 dump \ 18 dumpfs \ 19 dumpon \ 20 etherswitchcfg \ 21 ffsinfo \ 22 fsck \ 23 fsck_ffs \ 24 fsck_msdosfs \ 25 fsdb \ 26 fsirand \ 27 gbde \ 28 geom \ 29 ggate \ 30 growfs \ 31 gvinum \ 32 ifconfig \ 33 init \ 34 kldconfig \ 35 kldload \ 36 kldstat \ 37 kldunload \ 38 ldconfig \ 39 md5 \ 40 mdconfig \ 41 mdmfs \ 42 mknod \ 43 mksnap_ffs \ 44 mount \ 45 mount_cd9660 \ 46 mount_fusefs \ 47 mount_msdosfs \ 48 mount_nfs \ 49 mount_nullfs \ 50 mount_udf \ 51 mount_unionfs \ 52 newfs \ 53 newfs_msdos \ 54 nfsiod \ 55 nos-tun \ 56 pfilctl \ 57 rcorder \ 58 reboot \ 59 recoverdisk \ 60 resolvconf \ 61 restore \ 62 route \ 63 savecore \ 64 setkey \ 65 shutdown \ 66 swapon \ 67 sysctl \ 68 tunefs \ 69 umount 70 71.if ${MK_INET} != "no" || ${MK_INET6} != "no" 72SUBDIR+= ping 73.endif 74 75SUBDIR.${MK_CCD}+= ccdconfig 76SUBDIR.${MK_HAST}+= hastctl 77SUBDIR.${MK_HAST}+= hastd 78SUBDIR.${MK_INET6}+= rtsol 79SUBDIR.${MK_IPFILTER}+= ipf 80SUBDIR.${MK_IPFW}+= ipfw 81SUBDIR.${MK_IPFW}+= natd 82SUBDIR.${MK_NVME}+= nvmecontrol 83SUBDIR.${MK_OPENSSL}+= decryptcore 84SUBDIR.${MK_PF}+= pfctl 85SUBDIR.${MK_PF}+= pflogd 86SUBDIR.${MK_QUOTAS}+= quotacheck 87SUBDIR.${MK_ROUTED}+= routed 88SUBDIR.${MK_VERIEXEC}+= veriexec 89SUBDIR.${MK_ZFS}+= bectl 90SUBDIR.${MK_ZFS}+= zfsbootcfg 91 92SUBDIR.${MK_TESTS}+= tests 93 94.include <bsd.arch.inc.mk> 95 96SUBDIR_PARALLEL= 97 98.include <bsd.prog.mk> 99 100.include <bsd.subdir.mk> 101