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