kernel/linux: Fix a bug in idr_alloc()
[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         badsect \
8         camcontrol \
9         ccdconfig \
10         clri \
11         comcontrol \
12         cryptdisks \
13         devattr \
14         devd \
15         devfsctl \
16         dhclient \
17         disklabel32 \
18         disklabel64 \
19         diskinfo \
20         dmesg \
21         dump \
22         dumpfs \
23         dumpon \
24         ffsinfo \
25         fsck \
26         fsck_msdosfs \
27         fsdb \
28         fsid \
29         fsirand \
30         getdevpath \
31         growfs \
32         gpt \
33         hammer \
34         ifconfig \
35         init \
36         ip6fw \
37         ipfw \
38         ipfw3 \
39         iscontrol \
40         jscan \
41         kldconfig \
42         kldload \
43         kldstat \
44         kldunload \
45         ldconfig \
46         md5 \
47         mkinitrd \
48         mountctl \
49         mount \
50         mount_ufs \
51         mount_cd9660 \
52         mount_devfs \
53         mount_dirfs \
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         svc \
96         tcplay \
97         tunefs \
98         udevd \
99         umount \
100         usched \
101         vinum \
102         vquota
103
104 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
105 .if ${MACHINE_ARCH} == "i386"
106 SUBDIR+=kget
107 .endif
108 SUBDIR+=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>