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 geom \ 33 ggate \ 34 gpt \ 35 growfs \ 36 gvinum \ 37 ifconfig \ 38 init \ 39 ${_ip6fw} \ 40 ${_ipf} \ 41 ipfw \ 42 kldconfig \ 43 kldload \ 44 kldstat \ 45 kldunload \ 46 ldconfig \ 47 ${_mca} \ 48 md5 \ 49 mdconfig \ 50 mdmfs \ 51 mknod \ 52 mksnap_ffs \ 53 mount \ 54 mount_cd9660 \ 55 mount_ext2fs \ 56 mount_msdosfs \ 57 mount_nfs \ 58 mount_nfs4 \ 59 mount_ntfs \ 60 mount_nullfs \ 61 mount_reiserfs \ 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 !defined(NO_ATM) 96_atm= atm 97.endif 98 99.if !defined(NO_CXX) 100_devd= devd 101.endif 102 103.if !defined(NO_IPFILTER) 104_ipf= ipf 105.endif 106 107.if !defined(NO_PF) 108_pfctl= pfctl 109_pflogd= pflogd 110.endif 111 112.if !defined(NO_INET6) 113_ip6fw= ip6fw 114_ping6= ping6 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