1# @(#)Makefile 8.5 (Berkeley) 3/31/94 2# $FreeBSD$ 3 4# XXX MISSING: icheck ncheck 5 6SUBDIR= adjkerntz \ 7 atacontrol \ 8 ${_atm} \ 9 badsect \ 10 bsdlabel \ 11 camcontrol \ 12 ccdconfig \ 13 clri \ 14 comcontrol \ 15 conscontrol \ 16 ${_devd} \ 17 devfs \ 18 dhclient \ 19 dmesg \ 20 dump \ 21 dumpfs \ 22 dumpon \ 23 ${_fdisk} \ 24 ${_fdisk_pc98} \ 25 ffsinfo \ 26 fsck \ 27 fsck_ffs \ 28 fsck_msdosfs \ 29 fsdb \ 30 fsirand \ 31 gbde \ 32 gconcat \ 33 ggate \ 34 ${_gpt} \ 35 growfs \ 36 ifconfig \ 37 init \ 38 ${_ip6fw} \ 39 ${_ipf} \ 40 ${_ipfs} \ 41 ${_ipfstat} \ 42 ipfw \ 43 ${_ipmon} \ 44 ${_ipnat} \ 45 kldconfig \ 46 kldload \ 47 kldstat \ 48 kldunload \ 49 ldconfig \ 50 ${_mca} \ 51 md5 \ 52 mdconfig \ 53 mdmfs \ 54 mknod \ 55 mksnap_ffs \ 56 mount \ 57 mount_cd9660 \ 58 mount_ext2fs \ 59 mount_msdosfs \ 60 mount_nfs \ 61 mount_nfs4 \ 62 mount_ntfs \ 63 mount_nullfs \ 64 mount_std \ 65 mount_udf \ 66 mount_umapfs \ 67 mount_unionfs \ 68 natd \ 69 newfs \ 70 newfs_msdos \ 71 nfsiod \ 72 nos-tun \ 73 ${_pfctl} \ 74 ${_pflogd} \ 75 ping \ 76 ${_ping6} \ 77 quotacheck \ 78 rcorder \ 79 reboot \ 80 restore \ 81 route \ 82 routed \ 83 rtsol \ 84 savecore \ 85 ${_sconfig} \ 86 shutdown \ 87 slattach \ 88 spppcontrol \ 89 startslip \ 90 sunlabel \ 91 swapon \ 92 sysctl \ 93 tunefs \ 94 umount \ 95 ${_vinum} 96 97.if !defined(NOATM) 98_atm= atm 99.endif 100 101.if !defined(NO_CXX) 102_devd= devd 103.endif 104 105.if !defined(NO_IPFILTER) 106_ipf= ipf 107_ipfs= ipfs 108_ipfstat= ipfstat 109_ipmon= ipmon 110_ipnat= ipnat 111.endif 112 113.if !defined(NO_PF) 114_pfctl= pfctl 115_pflogd= pflogd 116.endif 117 118.if !defined(NOINET6) 119_ip6fw= ip6fw 120_ping6= ping6 121.endif 122 123.if !defined(NO_VINUM) 124_vinum= vinum 125.endif 126 127.if ${MACHINE_ARCH} == "i386" 128.if ${MACHINE} == "i386" 129_fdisk= fdisk 130.elif ${MACHINE} == "pc98" 131_fdisk_pc98= fdisk_pc98 132.endif 133_sconfig= sconfig 134.endif 135 136.if ${MACHINE_ARCH} == "amd64" 137_fdisk= fdisk 138.endif 139 140.if ${MACHINE_ARCH} == "ia64" 141_fdisk= fdisk 142_mca= mca 143.endif 144 145.if ${MACHINE_ARCH} != "sparc64" 146_gpt= gpt 147.endif 148 149.include <bsd.subdir.mk> 150