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 camcontrol \ 11 ccdconfig \ 12 clri \ 13 comcontrol \ 14 conscontrol \ 15 devfs \ 16 dhclient \ 17 dmesg \ 18 dump \ 19 dumpfs \ 20 dumpon \ 21 fsck \ 22 fsck_ffs \ 23 fsck_msdosfs \ 24 fsdb \ 25 fsirand \ 26 gbde \ 27 growfs \ 28 ifconfig \ 29 init \ 30 ip6fw \ 31 ipfw \ 32 kldconfig \ 33 kldload \ 34 kldstat \ 35 kldunload \ 36 ldconfig \ 37 md5 \ 38 mdconfig \ 39 mdmfs \ 40 mknod \ 41 mksnap_ffs \ 42 mount \ 43 mount_cd9660 \ 44 mount_ext2fs \ 45 mount_msdosfs \ 46 mount_nfs \ 47 mount_ntfs \ 48 mount_nullfs \ 49 mount_portalfs \ 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 swapon \ 76 sysctl \ 77 tunefs \ 78 umount \ 79 vinum 80 81.if !defined(NO_CXX) 82SUBDIR+=devd 83.endif 84 85.if !defined(NO_IPFILTER) 86SUBDIR+=ipf \ 87 ipfs \ 88 ipfstat \ 89 ipmon \ 90 ipnat 91.endif 92 93.if ${MACHINE_ARCH} == "i386" 94SUBDIR+=cxconfig \ 95 mount_nwfs \ 96 mount_smbfs 97SUBDIR+=disklabel 98.if ${MACHINE} == "pc98" 99SUBDIR+=fdisk_pc98 100.else 101SUBDIR+=fdisk 102.endif 103.endif 104 105.if ${MACHINE_ARCH} == "ia64" 106SUBDIR+=fdisk \ 107 disklabel \ 108 gpt \ 109 mca 110.endif 111 112.if ${MACHINE_ARCH} == "alpha" 113SUBDIR+=disklabel 114.endif 115 116.if ${MACHINE_ARCH} == "sparc64" 117SUBDIR+=sunlabel 118.endif 119 120.include <bsd.subdir.mk> 121