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