sh: Avoid possible echo options in a testcase.
[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_cd9660 \
52         mount_devfs \
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         vinum \
99         vquota
100
101 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
102 .if ${MACHINE_ARCH} == i386
103 SUBDIR+=kget
104 .endif
105 SUBDIR+=mount_nwfs \
106         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>