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