Makefile revision 308915
1238384Sjkim#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2238384Sjkim# $FreeBSD: stable/10/sbin/Makefile 308915 2016-11-21 10:14:36Z avg $
3238384Sjkim
4238384Sjkim.include <bsd.own.mk>
5238384Sjkim
6238384Sjkim# XXX MISSING:		icheck ncheck
7238384Sjkim
8238384SjkimSUBDIR=adjkerntz \
9238384Sjkim	badsect \
10238384Sjkim	camcontrol \
11238384Sjkim	clri \
12238384Sjkim	comcontrol \
13238384Sjkim	conscontrol \
14238384Sjkim	ddb \
15238384Sjkim	devfs \
16238384Sjkim	dhclient \
17238384Sjkim	dmesg \
18238384Sjkim	dump \
19238384Sjkim	dumpfs \
20238384Sjkim	dumpon \
21238384Sjkim	etherswitchcfg \
22238384Sjkim	ffsinfo \
23238384Sjkim	fsck \
24238384Sjkim	fsck_ffs \
25238384Sjkim	fsck_msdosfs \
26238384Sjkim	fsdb \
27238384Sjkim	fsirand \
28238384Sjkim	gbde \
29238384Sjkim	geom \
30238384Sjkim	ggate \
31238384Sjkim	growfs \
32238384Sjkim	gvinum \
33238384Sjkim	ifconfig \
34238384Sjkim	init \
35238384Sjkim	kldconfig \
36238384Sjkim	kldload \
37238384Sjkim	kldstat \
38238384Sjkim	kldunload \
39238384Sjkim	ldconfig \
40238384Sjkim	md5 \
41238384Sjkim	mdconfig \
42238384Sjkim	mdmfs \
43238384Sjkim	mknod \
44238384Sjkim	mksnap_ffs \
45238384Sjkim	mount \
46238384Sjkim	mount_cd9660 \
47238384Sjkim	mount_fusefs \
48238384Sjkim	mount_msdosfs \
49238384Sjkim	mount_nfs \
50238384Sjkim	mount_nullfs \
51238384Sjkim	mount_udf \
52238384Sjkim	mount_unionfs \
53238384Sjkim	newfs \
54238384Sjkim	newfs_msdos \
55238384Sjkim	nfsiod \
56238384Sjkim	nos-tun \
57238384Sjkim	ping \
58238384Sjkim	rcorder \
59238384Sjkim	reboot \
60238384Sjkim	recoverdisk \
61238384Sjkim	resolvconf \
62238405Sjkim	restore \
63238384Sjkim	route \
64238384Sjkim	savecore \
65238384Sjkim	setkey \
66238384Sjkim	shutdown \
67238384Sjkim	spppcontrol \
68238384Sjkim	swapon \
69238384Sjkim	sysctl \
70238384Sjkim	tunefs \
71238384Sjkim	umount \
72238384Sjkim
73238384Sjkim.if ${MK_ATM} != "no"
74238384SjkimSUBDIR+=	atm
75238384Sjkim.endif
76238384SjkimSUBDIR.${MK_ZFS}+=	zfsbootcfg
77238384Sjkim
78238384Sjkim.if ${MK_CCD} != "no"
79238384SjkimSUBDIR+=	ccdconfig
80238384Sjkim.endif
81238384Sjkim
82.if ${MK_CXX} != "no"
83SUBDIR+=	devd
84.endif
85
86.if ${MK_HAST} != "no"
87SUBDIR+=	hastctl
88SUBDIR+=	hastd
89.endif
90
91.if ${MK_INET6} != "no"
92SUBDIR+=	ping6
93SUBDIR+=	rtsol
94.endif
95	
96.if ${MK_IPFILTER} != "no"
97SUBDIR+=	ipf
98.endif
99
100.if ${MK_IPFW} != "no"
101SUBDIR+=	ipfw
102SUBDIR+=	natd
103.endif
104
105.if ${MK_ISCSI} != "no"
106SUBDIR+=	iscontrol
107.endif
108
109.if ${MK_NAND} != "no"
110SUBDIR+=	nandfs
111SUBDIR+=	newfs_nandfs
112.endif
113
114.if ${MK_PF} != "no"
115SUBDIR+=	pfctl
116SUBDIR+=	pflogd
117.endif
118
119.if ${MK_QUOTAS} != "no"
120SUBDIR+=	quotacheck
121.endif
122
123.if ${MK_ROUTED} != "no"
124SUBDIR+=	routed
125.endif
126
127.if ${MK_TESTS} != "no"
128SUBDIR+=	tests
129.endif
130
131.include <bsd.arch.inc.mk>
132
133SUBDIR:=	${SUBDIR:O}
134
135SUBDIR_PARALLEL=
136
137.include <bsd.subdir.mk>
138