kernel - Minor rerrangement to help w/ low level debugging
[dragonfly.git] / sbin / Makefile
blobb6ba284937b5962960b81e8f9c08b7fb9def9fa1
1 # @(#)Makefile 8.5 (Berkeley) 3/31/94
2 # $FreeBSD: src/sbin/Makefile,v 1.77.2.9 2002/08/08 09:03:46 ru Exp $
3 # $DragonFly: src/sbin/Makefile,v 1.20 2008/10/03 00:26:21 hasso Exp $
5 # XXX MISSING: icheck ncheck
7 SUBDIR= adjkerntz \
8 atacontrol \
9 atm \
10 badsect \
11 camcontrol \
12 ccdconfig \
13 clri \
14 comcontrol \
15 cryptdisks \
16 devd \
17 devfsctl \
18 dhclient \
19 disklabel32 \
20 disklabel64 \
21 diskinfo \
22 dmesg \
23 dump \
24 dumpfs \
25 dumpon \
26 ffsinfo \
27 fsck \
28 fsck_msdosfs \
29 fsdb \
30 fsirand \
31 getdevpath \
32 growfs \
33 gpt \
34 hammer \
35 ifconfig \
36 init \
37 ip6fw \
38 ipfw \
39 iscontrol \
40 jscan \
41 kldconfig \
42 kldload \
43 kldstat \
44 kldunload \
45 ldconfig \
46 md5 \
47 mkinitrd \
48 mknod \
49 mountctl \
50 mount \
51 mount_cd9660 \
52 mount_devfs \
53 mount_ext2fs \
54 mount_hammer \
55 mount_hpfs \
56 mount_msdos \
57 mount_nfs \
58 mount_ntfs \
59 mount_null \
60 mount_portal \
61 mount_std \
62 mount_tmpfs \
63 mount_udf \
64 mount_union \
65 mountd \
66 natacontrol \
67 natd \
68 newbtconf \
69 newfs \
70 newfs_hammer \
71 newfs_msdos \
72 nfsd \
73 nfsiod \
74 nologin \
75 nos-tun \
76 ping \
77 ping6 \
78 quotacheck \
79 reboot \
80 rconfig \
81 rcorder \
82 restore \
83 route \
84 routed \
85 rtsol \
86 rcrun \
87 savecore \
88 shutdown \
89 slattach \
90 spppcontrol \
91 startslip \
92 swapon \
93 sysctl \
94 tunefs \
95 udevd \
96 umount \
97 vinum
99 .if !defined(NO_IPFILTER)
100 SUBDIR+=ipf \
101 ipfs \
102 ipfstat \
103 ipmon \
104 ipnat
105 .endif
107 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
108 .if ${MACHINE_ARCH} == i386
109 SUBDIR+=kget
110 .endif
111 SUBDIR+=mount_nwfs \
112 mount_smbfs \
113 fdisk \
114 nextboot
115 .endif
117 .if exists(${.CURDIR}/${MACHINE})
118 SUBDIR+= ${MACHINE}
119 .endif
120 .if exists(${.CURDIR}/${MACHINE_ARCH})
121 SUBDIR+= ${MACHINE_ARCH}
122 .endif
124 .include <bsd.subdir.mk>