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 ${_gpt} \ 34 growfs \ 35 ifconfig \ 36 init \ 37 ${_ip6fw} \ 38 ${_ipf} \ 39 ${_ipfs} \ 40 ${_ipfstat} \ 41 ipfw \ 42 ${_ipmon} \ 43 ${_ipnat} \ 44 kldconfig \ 45 kldload \ 46 kldstat \ 47 kldunload \ 48 ldconfig \ 49 ${_mca} \ 50 md5 \ 51 mdconfig \ 52 mdmfs \ 53 mknod \ 54 mksnap_ffs \ 55 mount \ 56 mount_cd9660 \ 57 mount_ext2fs \ 58 mount_msdosfs \ 59 mount_nfs \ 60 mount_nfs4 \ 61 mount_ntfs \ 62 mount_nullfs \ 63 mount_std \ 64 mount_udf \ 65 mount_umapfs \ 66 mount_unionfs \ 67 natd \ 68 newfs \ 69 newfs_msdos \ 70 nfsiod \ 71 nos-tun \ 72 ${_pfctl} \ 73 ${_pflogd} \ 74 ping \ 75 ${_ping6} \ 76 quotacheck \ 77 rcorder \ 78 reboot \ 79 restore \ 80 route \ 81 routed \ 82 rtsol \ 83 savecore \ 84 ${_sconfig} \ 85 shutdown \ 86 slattach \ 87 spppcontrol \ 88 startslip \ 89 sunlabel \ 90 swapon \ 91 sysctl \ 92 tunefs \ 93 umount \ 94 ${_vinum} 95 96.if !defined(NOATM) 97_atm= atm 98.endif 99 100.if !defined(NO_CXX) 101_devd= devd 102.endif 103 104.if !defined(NO_IPFILTER) 105_ipf= ipf 106_ipfs= ipfs 107_ipfstat= ipfstat 108_ipmon= ipmon 109_ipnat= ipnat 110.endif 111 112.if !defined(NO_PF) 113_pfctl= pfctl 114_pflogd= pflogd 115.endif 116 117.if !defined(NOINET6) 118_ip6fw= ip6fw 119_ping6= ping6 120.endif 121 122.if !defined(NO_VINUM) 123_vinum= vinum 124.endif 125 126.if ${MACHINE_ARCH} == "i386" 127.if ${MACHINE} == "i386" 128_fdisk= fdisk 129.elif ${MACHINE} == "pc98" 130_fdisk_pc98= fdisk_pc98 131.endif 132_sconfig= sconfig 133.endif 134 135.if ${MACHINE_ARCH} == "amd64" 136_fdisk= fdisk 137_gpt= gpt 138.endif 139 140.if ${MACHINE_ARCH} == "ia64" 141_fdisk= fdisk 142_gpt= gpt 143_mca= mca 144.endif 145 146.include <bsd.subdir.mk> 147