Makefile revision 278555
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: stable/10/sbin/Makefile 278555 2015-02-11 07:08:32Z ngie $
3
4.include <bsd.own.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_CXX} != "no"
81SUBDIR+=	devd
82.endif
83
84.if ${MK_INET6} != "no"
85SUBDIR+=	ping6
86SUBDIR+=	rtsol
87.endif
88	
89.if ${MK_IPFILTER} != "no"
90SUBDIR+=	ipf
91.endif
92
93.if ${MK_IPFW} != "no"
94SUBDIR+=	ipfw
95SUBDIR+=	natd
96.endif
97
98.if ${MK_ISCSI} != "no"
99SUBDIR+=	iscontrol
100.endif
101
102.if ${MK_NAND} != "no"
103SUBDIR+=	nandfs
104SUBDIR+=	newfs_nandfs
105.endif
106
107.if ${MK_PF} != "no"
108SUBDIR+=	pfctl
109SUBDIR+=	pflogd
110.endif
111
112.if ${MK_QUOTAS} != "no"
113SUBDIR+=	quotacheck
114.endif
115
116.if ${MK_ROUTED} != "no"
117SUBDIR+=	routed
118.endif
119
120.if ${MK_TESTS} != "no"
121SUBDIR+=	tests
122.endif
123
124.include <bsd.arch.inc.mk>
125
126SUBDIR:=	${SUBDIR:O}
127
128SUBDIR_PARALLEL=
129
130.include <bsd.subdir.mk>
131