]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sbin/Makefile
MFC r277675,r277726,r278070:
[FreeBSD/stable/10.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         badsect \
10         camcontrol \
11         ccdconfig \
12         clri \
13         comcontrol \
14         conscontrol \
15         ddb \
16         devfs \
17         dhclient \
18         dmesg \
19         dump \
20         dumpfs \
21         dumpon \
22         etherswitchcfg \
23         ffsinfo \
24         fsck \
25         fsck_ffs \
26         fsck_msdosfs \
27         fsdb \
28         fsirand \
29         gbde \
30         geom \
31         ggate \
32         growfs \
33         gvinum \
34         hastctl \
35         hastd \
36         ifconfig \
37         init \
38         kldconfig \
39         kldload \
40         kldstat \
41         kldunload \
42         ldconfig \
43         md5 \
44         mdconfig \
45         mdmfs \
46         mknod \
47         mksnap_ffs \
48         mount \
49         mount_cd9660 \
50         mount_fusefs \
51         mount_msdosfs \
52         mount_nfs \
53         mount_nullfs \
54         mount_udf \
55         mount_unionfs \
56         newfs \
57         newfs_msdos \
58         nfsiod \
59         nos-tun \
60         ping \
61         rcorder \
62         reboot \
63         recoverdisk \
64         resolvconf \
65         restore \
66         route \
67         savecore \
68         setkey \
69         shutdown \
70         spppcontrol \
71         swapon \
72         sysctl \
73         tunefs \
74         umount \
75
76 .if ${MK_ATM} != "no"
77 SUBDIR+=        atm
78 .endif
79
80 .if ${MK_CXX} != "no"
81 SUBDIR+=        devd
82 .endif
83
84 .if ${MK_INET6} != "no"
85 SUBDIR+=        ping6
86 SUBDIR+=        rtsol
87 .endif
88         
89 .if ${MK_IPFILTER} != "no"
90 SUBDIR+=        ipf
91 .endif
92
93 .if ${MK_IPFW} != "no"
94 SUBDIR+=        ipfw
95 SUBDIR+=        natd
96 .endif
97
98 .if ${MK_ISCSI} != "no"
99 SUBDIR+=        iscontrol
100 .endif
101
102 .if ${MK_NAND} != "no"
103 SUBDIR+=        nandfs
104 SUBDIR+=        newfs_nandfs
105 .endif
106
107 .if ${MK_PF} != "no"
108 SUBDIR+=        pfctl
109 SUBDIR+=        pflogd
110 .endif
111
112 .if ${MK_QUOTAS} != "no"
113 SUBDIR+=        quotacheck
114 .endif
115
116 .if ${MK_ROUTED} != "no"
117 SUBDIR+=        routed
118 .endif
119
120 .if ${MK_TESTS} != "no"
121 SUBDIR+=        tests
122 .endif
123
124 .include <bsd.arch.inc.mk>
125
126 SUBDIR:=        ${SUBDIR:O}
127
128 SUBDIR_PARALLEL=
129
130 .include <bsd.subdir.mk>