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