test/amd64: increase root size
[dragonfly.git] / sbin / Makefile
blobb95bc9b60e7ff7a53a87ab188ac53d9cfa998529
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 devd \
16 devfsctl \
17 dhclient \
18 disklabel \
19 disklabel64 \
20 diskinfo \
21 dmesg \
22 dump \
23 dumpfs \
24 dumpon \
25 ffsinfo \
26 fsck \
27 fsck_msdosfs \
28 fsdb \
29 fsirand \
30 getdevpath \
31 growfs \
32 gpt \
33 hammer \
34 ifconfig \
35 init \
36 ip6fw \
37 ipfw \
38 jscan \
39 kldconfig \
40 kldload \
41 kldstat \
42 kldunload \
43 ldconfig \
44 md5 \
45 mknod \
46 mountctl \
47 mount \
48 mount_cd9660 \
49 mount_devfs \
50 mount_ext2fs \
51 mount_hammer \
52 mount_msdos \
53 mount_nfs \
54 mount_ntfs \
55 mount_null \
56 mount_portal \
57 mount_std \
58 mount_udf \
59 mount_union \
60 mountd \
61 natacontrol \
62 natd \
63 newbtconf \
64 newfs \
65 newfs_hammer \
66 newfs_msdos \
67 nfsd \
68 nfsiod \
69 nologin \
70 nos-tun \
71 ping \
72 ping6 \
73 quotacheck \
74 reboot \
75 rconfig \
76 rcorder \
77 restore \
78 route \
79 routed \
80 rtsol \
81 rcrun \
82 savecore \
83 shutdown \
84 slattach \
85 spppcontrol \
86 startslip \
87 swapon \
88 sysctl \
89 tunefs \
90 umount \
91 vinum
93 .if !defined(NO_IPFILTER)
94 SUBDIR+=ipf \
95 ipfs \
96 ipfstat \
97 ipmon \
98 ipnat
99 .endif
101 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == amd64
102 .if ${MACHINE_ARCH} == i386
103 SUBDIR+=kget
104 .endif
105 SUBDIR+=mount_nwfs \
106 mount_smbfs \
107 fdisk \
108 nextboot
109 .endif
111 .if exists(${.CURDIR}/${MACHINE})
112 SUBDIR+= ${MACHINE}
113 .endif
114 .if exists(${.CURDIR}/${MACHINE_ARCH})
115 SUBDIR+= ${MACHINE_ARCH}
116 .endif
118 .include <bsd.subdir.mk>