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 devfs \ 17 dhclient \ 18 dmesg \ 19 dump \ 20 dumpfs \ 21 dumpon \ 22 fsck \ 23 fsck_ffs \ 24 fsck_msdosfs \ 25 fsdb \ 26 fsirand \ 27 gbde \ 28 growfs \ 29 ifconfig \ 30 init \ 31 ip6fw \ 32 ipfw \ 33 kldconfig \ 34 kldload \ 35 kldstat \ 36 kldunload \ 37 ldconfig \ 38 md5 \ 39 mdconfig \ 40 mdmfs \ 41 mknod \ 42 mksnap_ffs \ 43 mount \ 44 mount_cd9660 \ 45 mount_ext2fs \ 46 mount_msdosfs \ 47 mount_nfs \ 48 mount_ntfs \ 49 mount_nullfs \ 50 mount_std \ 51 mount_udf \ 52 mount_umapfs \ 53 mount_unionfs \ 54 natd \ 55 newfs \ 56 newfs_msdos \ 57 nfsiod \ 58 nologin \ 59 nos-tun \ 60 ping \ 61 ping6 \ 62 quotacheck \ 63 raidctl \ 64 rcorder \ 65 reboot \ 66 restore \ 67 route \ 68 routed \ 69 rtsol \ 70 savecore \ 71 shutdown \ 72 slattach \ 73 spppcontrol \ 74 startslip \ 75 sunlabel \ 76 swapon \ 77 sysctl \ 78 tunefs \ 79 umount \ 80 vinum 81 82.if !defined(NO_CXX) 83SUBDIR+=devd 84.endif 85 86.if !defined(NO_IPFILTER) 87SUBDIR+=ipf \ 88 ipfs \ 89 ipfstat \ 90 ipmon \ 91 ipnat 92.endif 93 94.if ${MACHINE_ARCH} == "i386" 95SUBDIR+=cxconfig 96.if ${MACHINE} == "pc98" 97SUBDIR+=fdisk_pc98 98.else 99SUBDIR+=fdisk 100.endif 101.endif 102 103.if ${MACHINE_ARCH} == "ia64" 104SUBDIR+=fdisk \ 105 gpt \ 106 mca 107.endif 108 109.if ${MACHINE_ARCH} == "amd64" 110SUBDIR+=fdisk 111.endif 112 113.include <bsd.subdir.mk> 114