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 dhclient \ 16 disklabel \ 17 dmesg \ 18 dump \ 19 dumpfs \ 20 dumpon \ 21 ffsinfo \ 22 fsck \ 23 fsck_ffs \ 24 fsck_ifs \ 25 fsck_msdosfs \ 26 fsdb \ 27 fsirand \ 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 mount \ 43 mount_cd9660 \ 44 mount_ext2fs \ 45 mount_ifs \ 46 mount_msdosfs \ 47 mount_nfs \ 48 mount_ntfs \ 49 mount_nullfs \ 50 mount_portalfs \ 51 mount_std \ 52 mount_umapfs \ 53 mount_unionfs \ 54 mountd \ 55 natd \ 56 newfs \ 57 newfs_msdos \ 58 nfsd \ 59 nologin \ 60 nos-tun \ 61 ping \ 62 ping6 \ 63 quotacheck \ 64 reboot \ 65 restore \ 66 route \ 67 routed \ 68 rtsol \ 69 shutdown \ 70 slattach \ 71 spppcontrol \ 72 startslip \ 73 swapon \ 74 sysctl \ 75 tunefs \ 76 umount \ 77 vinum 78 79.if !defined(NO_IPFILTER) 80SUBDIR+=ipf \ 81 ipfs \ 82 ipfstat \ 83 ipmon \ 84 ipnat 85.endif 86 87.if ${MACHINE_ARCH} == "i386" 88SUBDIR+=cxconfig \ 89 kget \ 90 mount_nwfs \ 91 mount_smbfs \ 92 nextboot \ 93 savecore 94.if ${MACHINE} == "pc98" 95SUBDIR+=fdisk_pc98 96.else 97SUBDIR+=fdisk 98.endif 99.endif 100 101.if ${MACHINE_ARCH} == "alpha" 102SUBDIR+=savecore 103.endif 104 105.if ${MACHINE_ARCH} == "ia64" 106SUBDIR+=fdisk 107.endif 108 109.include <bsd.subdir.mk> 110