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 shutdown \ 85 slattach \ 86 spppcontrol \ 87 startslip \ 88 sunlabel \ 89 swapon \ 90 sysctl \ 91 tunefs \ 92 umount \ 93 94.if !defined(NO_ATM) 95_atm= atm 96.endif 97 98.if !defined(NO_CXX) 99_devd= devd 100.endif 101 102.if !defined(NO_IPFILTER) 103_ipf= ipf 104.endif 105 106.if !defined(NO_PF) 107_pfctl= pfctl 108_pflogd= pflogd 109.endif 110 111.if !defined(NO_INET6) 112_ip6fw= ip6fw 113_ping6= ping6 114.endif 115 116.if ${MACHINE_ARCH} == "i386" 117.if ${MACHINE} == "i386" 118_fdisk= fdisk 119.elif ${MACHINE} == "pc98" 120_fdisk_pc98= fdisk_pc98 121.endif 122_sconfig= sconfig 123.endif 124 125.if ${MACHINE_ARCH} == "amd64" 126_fdisk= fdisk 127.endif 128 129.if ${MACHINE_ARCH} == "ia64" 130_fdisk= fdisk 131_mca= mca 132.endif 133 134.include <bsd.subdir.mk> 135