Makefile revision 277725
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 277725 2015-01-26 06:27:07Z ngie $
3
4.include <src.opts.mk>
5
6# XXX MISSING:		icheck ncheck
7
8SUBDIR=adjkerntz \
9	badsect \
10	camcontrol \
11	clri \
12	comcontrol \
13	conscontrol \
14	ddb \
15	devfs \
16	dhclient \
17	dmesg \
18	dump \
19	dumpfs \
20	dumpon \
21	etherswitchcfg \
22	ffsinfo \
23	fsck \
24	fsck_ffs \
25	fsck_msdosfs \
26	fsdb \
27	fsirand \
28	gbde \
29	geom \
30	ggate \
31	growfs \
32	gvinum \
33	ifconfig \
34	init \
35	kldconfig \
36	kldload \
37	kldstat \
38	kldunload \
39	ldconfig \
40	md5 \
41	mdconfig \
42	mdmfs \
43	mknod \
44	mksnap_ffs \
45	mount \
46	mount_cd9660 \
47	mount_fusefs \
48	mount_msdosfs \
49	mount_nfs \
50	mount_nullfs \
51	mount_udf \
52	mount_unionfs \
53	newfs \
54	newfs_msdos \
55	nfsiod \
56	nos-tun \
57	ping \
58	rcorder \
59	reboot \
60	recoverdisk \
61	resolvconf \
62	restore \
63	route \
64	savecore \
65	setkey \
66	shutdown \
67	spppcontrol \
68	swapon \
69	sysctl \
70	tunefs \
71	umount
72
73.if ${MK_ATM} != "no"
74SUBDIR+=	atm
75.endif
76
77.if ${MK_CASPER} != "no"
78SUBDIR+=	casperd
79.endif
80
81.if ${MK_CCD} != "no"
82SUBDIR+=	ccdconfig
83.endif
84
85.if ${MK_CXX} != "no"
86SUBDIR+=	devd
87.endif
88
89.if ${MK_HAST} != "no"
90SUBDIR+=	hastctl
91SUBDIR+=	hastd
92.endif
93
94.if ${MK_IPFILTER} != "no"
95SUBDIR+=	ipf
96.endif
97
98.if ${MK_IPFW} != "no"
99SUBDIR+=	ipfw
100SUBDIR+=	natd
101.endif
102
103.if ${MK_NAND} != "no"
104SUBDIR+=	nandfs
105SUBDIR+=	newfs_nandfs
106.endif
107
108.if ${MK_PF} != "no"
109SUBDIR+=	pfctl
110SUBDIR+=	pflogd
111.endif
112
113.if ${MK_INET6} != "no"
114SUBDIR+=	ping6
115SUBDIR+=	rtsol
116.endif
117	
118.if ${MK_ISCSI} != "no"
119SUBDIR+=	iscontrol
120.endif
121
122.if ${MK_QUOTAS} != "no"
123SUBDIR+=	quotacheck
124.endif
125
126.if ${MK_ROUTED} != "no"
127SUBDIR+=	routed
128.endif
129
130.if ${MK_TESTS} != "no"
131SUBDIR+=	tests
132.endif
133
134.include <bsd.arch.inc.mk>
135
136SUBDIR:=	${SUBDIR:O}
137
138SUBDIR_PARALLEL=
139
140.include <bsd.subdir.mk>
141