1# @(#)Makefile 8.5 (Berkeley) 3/31/94 2# $FreeBSD$ 3 4.include <bsd.own.mk> 5 6# XXX MISSING: icheck ncheck 7 8SUBDIR= adjkerntz \ 9 atacontrol \ 10 ${_atm} \ 11 badsect \ 12 bsdlabel \ 13 camcontrol \ 14 ccdconfig \ 15 clri \ 16 comcontrol \ 17 conscontrol \ 18 ${_devd} \ 19 devfs \ 20 dhclient \ 21 dmesg \ 22 dump \ 23 dumpfs \ 24 dumpon \ 25 ${_fdisk} \ 26 ${_fdisk_pc98} \ 27 ffsinfo \ 28 fsck \ 29 fsck_ffs \ 30 fsck_msdosfs \ 31 fsdb \ 32 fsirand \ 33 gbde \ 34 geom \ 35 ggate \ 36 gpt \ 37 growfs \ 38 gvinum \ 39 idmapd \ 40 ifconfig \ 41 init \ 42 ${_ipf} \ 43 ipfw \ 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_msdosfs \ 58 mount_nfs \ 59 mount_ntfs \ 60 mount_nullfs \ 61 mount_udf \ 62 mount_umapfs \ 63 mount_unionfs \ 64 natd \ 65 newfs \ 66 newfs_msdos \ 67 nfsiod \ 68 nos-tun \ 69 ${_pfctl} \ 70 ${_pflogd} \ 71 ping \ 72 ${_ping6} \ 73 quotacheck \ 74 rcorder \ 75 reboot \ 76 restore \ 77 route \ 78 routed \ 79 ${_rtsol} \ 80 savecore \ 81 ${_sconfig} \ 82 setkey \ 83 shutdown \ 84 slattach \ 85 spppcontrol \ 86 startslip \ 87 sunlabel \ 88 swapon \ 89 sysctl \ 90 tunefs \ 91 umount \ 92 93.if ${MK_ATM} != "no" 94_atm= atm 95.endif 96 97.if ${MK_CXX} != "no" 98_devd= devd 99.endif 100 101.if ${MK_IPFILTER} != "no" 102_ipf= ipf 103.endif 104 105.if ${MK_PF} != "no" 106_pfctl= pfctl 107_pflogd= pflogd 108.endif 109 110.if ${MK_INET6} != "no" 111_ping6= ping6 112_rtsol= rtsol 113.endif 114 115.if ${MACHINE_ARCH} == "i386" 116.if ${MACHINE} == "i386" 117_fdisk= fdisk 118.elif ${MACHINE} == "pc98" 119_fdisk_pc98= fdisk_pc98 120.endif 121_sconfig= sconfig 122.endif 123 124.if ${MACHINE_ARCH} == "amd64" 125_fdisk= fdisk 126.endif 127 128.if ${MACHINE_ARCH} == "arm" 129_fdisk= fdisk 130.endif 131 132.if ${MACHINE_ARCH} == "ia64" 133_fdisk= fdisk 134_mca= mca 135.endif 136 137.include <bsd.subdir.mk> 138