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 ${_ip6fw} \ 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_ext2fs \ 58 mount_msdosfs \ 59 mount_nfs \ 60 mount_nfs4 \ 61 mount_ntfs \ 62 mount_nullfs \ 63 mount_reiserfs \ 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 setkey \ 87 shutdown \ 88 slattach \ 89 spppcontrol \ 90 startslip \ 91 sunlabel \ 92 swapon \ 93 sysctl \ 94 tunefs \ 95 umount \ 96 97.if ${MK_ATM} != "no" 98_atm= atm 99.endif 100 101.if ${MK_CXX} != "no" 102_devd= devd 103.endif 104 105.if ${MK_IPFILTER} != "no" 106_ipf= ipf 107.endif 108 109.if ${MK_PF} != "no" 110_pfctl= pfctl 111_pflogd= pflogd 112.endif 113 114.if ${MK_INET6} != "no" 115_ip6fw= ip6fw 116_ping6= ping6 117.endif 118 119.if ${MACHINE_ARCH} == "i386" 120.if ${MACHINE} == "i386" 121_fdisk= fdisk 122.elif ${MACHINE} == "pc98" 123_fdisk_pc98= fdisk_pc98 124.endif 125_sconfig= sconfig 126.endif 127 128.if ${MACHINE_ARCH} == "amd64" 129_fdisk= fdisk 130.endif 131 132.if ${MACHINE_ARCH} == "arm" 133_fdisk= fdisk 134.endif 135 136.if ${MACHINE_ARCH} == "ia64" 137_fdisk= fdisk 138_mca= mca 139.endif 140 141.include <bsd.subdir.mk> 142