hammer2 - Messaging layer separation work part 4
[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 #
4 # XXX MISSING:          icheck ncheck
5
6 SUBDIR= adjkerntz \
7         atm \
8         badsect \
9         camcontrol \
10         ccdconfig \
11         clri \
12         comcontrol \
13         cryptdisks \
14         devattr \
15         devd \
16         devfsctl \
17         dhclient \
18         disklabel32 \
19         disklabel64 \
20         diskinfo \
21         dmesg \
22         dump \
23         dumpfs \
24         dumpon \
25         ffsinfo \
26         fsck \
27         fsck_msdosfs \
28         fsdb \
29         fsid \
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_ufs \
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         tcplay \
96         tunefs \
97         udevd \
98         umount \
99         usched \
100         vinum \
101         vquota
102
103 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
104 .if ${MACHINE_ARCH} == i386
105 SUBDIR+=kget
106 .endif
107 SUBDIR+=mount_nwfs \
108         mount_smbfs \
109         fdisk \
110         nextboot
111 .endif
112
113 .if exists(${.CURDIR}/${MACHINE})
114 SUBDIR+= ${MACHINE}
115 .endif
116 .if exists(${.CURDIR}/${MACHINE_ARCH})
117 SUBDIR+= ${MACHINE_ARCH}
118 .endif
119
120 # maximum parallelism
121 #
122 SUBDIR_ORDERED=
123
124 .include <bsd.subdir.mk>