Move all the code related to handling the current 32 bit disklabel
[dragonfly.git] / sbin / Makefile
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.16 2007/06/16 22:29:25 dillon Exp $
4 #
5 # XXX MISSING:          icheck ncheck
6
7 SUBDIR= adjkerntz \
8         atacontrol \
9         atm \
10         badsect \
11         camcontrol \
12         ccdconfig \
13         clri \
14         comcontrol \
15         dhclient \
16         disklabel \
17         diskinfo \
18         dmesg \
19         dump \
20         dumpfs \
21         dumpon \
22         ffsinfo \
23         fsck \
24         fsck_msdosfs \
25         fsdb \
26         fsirand \
27         growfs \
28         gpt \
29         ifconfig \
30         init \
31         ip6fw \
32         ipfw \
33         jscan \
34         kldconfig \
35         kldload \
36         kldstat \
37         kldunload \
38         ldconfig \
39         md5 \
40         mknod \
41         mountctl \
42         mount \
43         mount_cd9660 \
44         mount_ext2fs \
45         mount_msdos \
46         mount_nfs \
47         mount_ntfs \
48         mount_null \
49         mount_portal \
50         mount_std \
51         mount_udf \
52         mount_union \
53         mountd \
54         natacontrol \
55         natd \
56         newbtconf \
57         newfs \
58         newfs_msdos \
59         nfsd \
60         nfsiod \
61         nologin \
62         nos-tun \
63         ping \
64         ping6 \
65         quotacheck \
66         reboot \
67         rconfig \
68         rcorder \
69         restore \
70         route \
71         routed \
72         rtsol \
73         rcrun \
74         savecore \
75         shutdown \
76         slattach \
77         spppcontrol \
78         startslip \
79         swapon \
80         sysctl \
81         tunefs \
82         umount \
83         vinum
84
85 .if !defined(NO_IPFILTER)
86 SUBDIR+=ipf \
87         ipfs \
88         ipfstat \
89         ipmon \
90         ipnat
91 .endif
92
93 .if ${MACHINE_ARCH} == i386
94 SUBDIR+=kget \
95         mount_nwfs \
96         mount_smbfs
97 .endif
98
99 .if exists(${.CURDIR}/${MACHINE})
100 SUBDIR+= ${MACHINE}
101 .endif
102 .if exists(${.CURDIR}/${MACHINE_ARCH})
103 SUBDIR+= ${MACHINE_ARCH}
104 .endif
105
106 .include <bsd.subdir.mk>