Remove ATM protocol support.
[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         iscontrol \
39         jscan \
40         kldconfig \
41         kldload \
42         kldstat \
43         kldunload \
44         ldconfig \
45         md5 \
46         mkinitrd \
47         mountctl \
48         mount \
49         mount_ufs \
50         mount_cd9660 \
51         mount_devfs \
52         mount_dirfs \
53         mount_ext2fs \
54         mount_hammer \
55         mount_hpfs \
56         mount_msdos \
57         mount_nfs \
58         mount_ntfs \
59         mount_null \
60         mount_portal \
61         mount_std \
62         mount_tmpfs \
63         mount_udf \
64         mount_union \
65         mountd \
66         natacontrol \
67         natd \
68         newbtconf \
69         newfs \
70         newfs_hammer \
71         newfs_msdos \
72         nfsd \
73         nfsiod \
74         nologin \
75         nos-tun \
76         ping \
77         ping6 \
78         quotacheck \
79         reboot \
80         rconfig \
81         rcorder \
82         restore \
83         route \
84         routed \
85         rtsol \
86         rcrun \
87         savecore \
88         shutdown \
89         slattach \
90         spppcontrol \
91         startslip \
92         swapon \
93         sysctl \
94         tcplay \
95         tunefs \
96         udevd \
97         umount \
98         usched \
99         vinum \
100         vquota
101
102 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
103 .if ${MACHINE_ARCH} == i386
104 SUBDIR+=kget
105 .endif
106 SUBDIR+=mount_smbfs \
107         fdisk \
108         nextboot
109 .endif
110
111 .if exists(${.CURDIR}/${MACHINE})
112 SUBDIR+= ${MACHINE}
113 .endif
114 .if exists(${.CURDIR}/${MACHINE_ARCH})
115 SUBDIR+= ${MACHINE_ARCH}
116 .endif
117
118 # maximum parallelism
119 #
120 SUBDIR_ORDERED=
121
122 .include <bsd.subdir.mk>