1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD$
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	iscontrol \
39	kldconfig \
40	kldload \
41	kldstat \
42	kldunload \
43	ldconfig \
44	md5 \
45	mdconfig \
46	mdmfs \
47	mknod \
48	mksnap_ffs \
49	mount \
50	mount_cd9660 \
51	mount_fusefs \
52	mount_msdosfs \
53	mount_nfs \
54	mount_nullfs \
55	mount_udf \
56	mount_unionfs \
57	newfs \
58	newfs_msdos \
59	nfsiod \
60	nos-tun \
61	ping \
62	rcorder \
63	reboot \
64	recoverdisk \
65	resolvconf \
66	restore \
67	route \
68	savecore \
69	setkey \
70	shutdown \
71	spppcontrol \
72	swapon \
73	sysctl \
74	tunefs \
75	umount \
76
77.if ${MK_ATM} != "no"
78SUBDIR+=	atm
79.endif
80
81.if ${MK_CXX} != "no"
82SUBDIR+=	devd
83.endif
84
85.if ${MK_IPFILTER} != "no"
86SUBDIR+=	ipf
87.endif
88
89.if ${MK_IPFW} != "no"
90SUBDIR+=	ipfw
91SUBDIR+=	natd
92.endif
93
94.if ${MK_NAND} != "no"
95SUBDIR+=	nandfs
96SUBDIR+=	newfs_nandfs
97.endif
98
99.if ${MK_PF} != "no"
100SUBDIR+=	pfctl
101SUBDIR+=	pflogd
102.endif
103
104.if ${MK_INET6} != "no"
105SUBDIR+=	ping6
106SUBDIR+=	rtsol
107.endif
108
109.if ${MK_QUOTAS} != "no"
110SUBDIR+=	quotacheck
111.endif
112
113.if ${MK_ROUTED} != "no"
114SUBDIR+=	routed
115.endif
116
117.include <bsd.arch.inc.mk>
118
119SUBDIR:=	${SUBDIR:O}
120
121.include <bsd.subdir.mk>
122