]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sbin/Makefile
MFC r362623:
[FreeBSD/stable/8.git] / sbin / Makefile
1 #       @(#)Makefile    8.5 (Berkeley) 3/31/94
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 # XXX MISSING:          icheck ncheck
7
8 SUBDIR= adjkerntz \
9         atacontrol \
10         ${_atm} \
11         badsect \
12         ${_bsdlabel} \
13         camcontrol \
14         ccdconfig \
15         clri \
16         comcontrol \
17         conscontrol \
18         ddb \
19         ${_devd} \
20         devfs \
21         dhclient \
22         dmesg \
23         dump \
24         dumpfs \
25         dumpon \
26         ${_fdisk} \
27         ${_fdisk_pc98} \
28         ffsinfo \
29         fsck \
30         fsck_ffs \
31         fsck_msdosfs \
32         fsdb \
33         fsirand \
34         gbde \
35         geom \
36         ggate \
37         growfs \
38         gvinum \
39         hastctl \
40         hastd \
41         ifconfig \
42         init \
43         ${_ipf} \
44         ${_ipfw} \
45         iscontrol \
46         kldconfig \
47         kldload \
48         kldstat \
49         kldunload \
50         ldconfig \
51         ${_mca} \
52         md5 \
53         mdconfig \
54         mdmfs \
55         mknod \
56         mksnap_ffs \
57         mount \
58         mount_cd9660 \
59         mount_msdosfs \
60         mount_nfs \
61         mount_ntfs \
62         mount_nullfs \
63         mount_udf \
64         mount_unionfs \
65         ${_natd} \
66         newfs \
67         newfs_msdos \
68         nfsiod \
69         nos-tun \
70         ${_pfctl} \
71         ${_pflogd} \
72         ping \
73         ${_ping6} \
74         ${_quotacheck} \
75         rcorder \
76         reboot \
77         recoverdisk \
78         restore \
79         route \
80         ${_routed} \
81         ${_rtsol} \
82         savecore \
83         ${_sconfig} \
84         setkey \
85         shutdown \
86         spppcontrol \
87         ${_sunlabel} \
88         swapon \
89         sysctl \
90         tunefs \
91         umount \
92
93 .if ${MK_ATM} != "no"
94 _atm=           atm
95 .endif
96
97 .if ${MK_CXX} != "no"
98 _devd=          devd
99 .endif
100
101 .if ${MK_IPFILTER} != "no"
102 _ipf=           ipf
103 .endif
104
105 .if ${MK_IPFW} != "no"
106 _ipfw=          ipfw
107 _natd=          natd
108 .endif
109
110 .if ${MK_PF} != "no"
111 _pfctl=         pfctl
112 _pflogd=        pflogd
113 .endif
114
115 .if ${MK_INET6} != "no"
116 _ping6=         ping6
117 _rtsol=         rtsol
118 .endif
119
120 .if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
121 _bsdlabel=      bsdlabel
122 .endif
123
124 .if ${MK_QUOTAS} != "no"
125 _quotacheck=    quotacheck
126 .endif
127
128 .if ${MK_ROUTED} != "no"
129 _routed=        routed
130 .endif
131
132 .if ${MACHINE_ARCH} == "i386"
133 .if ${MACHINE} == "i386"
134 _fdisk=         fdisk
135 .elif ${MACHINE} == "pc98"
136 _fdisk_pc98=    fdisk_pc98
137 .endif
138 _sconfig=       sconfig
139 .endif
140
141 .if ${MACHINE_ARCH} == "amd64"
142 _fdisk=         fdisk
143 .endif
144
145 .if ${MACHINE_ARCH} == "arm"
146 _fdisk=         fdisk
147 .endif
148
149 .if ${MACHINE_ARCH} == "ia64"
150 _mca=           mca
151 .endif
152
153 .if ${MACHINE_ARCH} == "sparc64"
154 _sunlabel=      sunlabel
155 .endif
156
157 SUBDIR_PARALLEL=
158
159 .include <bsd.subdir.mk>