Makefile revision 277675
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 277675 2015-01-25 04:20:11Z ngie $
3
4.include <src.opts.mk>
5
6# XXX MISSING:		icheck ncheck
7
8SUBDIR=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"
77SUBDIR+=	atm
78.endif
79
80.if ${MK_CASPER} != "no"
81SUBDIR+=	casperd
82.endif
83
84.if ${MK_CXX} != "no"
85SUBDIR+=	devd
86.endif
87
88.if ${MK_IPFILTER} != "no"
89SUBDIR+=	ipf
90.endif
91
92.if ${MK_IPFW} != "no"
93SUBDIR+=	ipfw
94SUBDIR+=	natd
95.endif
96
97.if ${MK_NAND} != "no"
98SUBDIR+=	nandfs
99SUBDIR+=	newfs_nandfs
100.endif
101
102.if ${MK_PF} != "no"
103SUBDIR+=	pfctl
104SUBDIR+=	pflogd
105.endif
106
107.if ${MK_INET6} != "no"
108SUBDIR+=	ping6
109SUBDIR+=	rtsol
110.endif
111	
112.if ${MK_ISCSI} != "no"
113SUBDIR+=	iscontrol
114.endif
115
116.if ${MK_QUOTAS} != "no"
117SUBDIR+=	quotacheck
118.endif
119
120.if ${MK_ROUTED} != "no"
121SUBDIR+=	routed
122.endif
123
124.if ${MK_TESTS} != "no"
125SUBDIR+=	tests
126.endif
127
128.include <bsd.arch.inc.mk>
129
130SUBDIR:=	${SUBDIR:O}
131
132SUBDIR_PARALLEL=
133
134.include <bsd.subdir.mk>
135