Makefile revision 235289
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 235289 2012-05-11 20:56:04Z adrian $
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_msdosfs \
53	mount_nfs \
54	mount_ntfs \
55	mount_nullfs \
56	mount_udf \
57	mount_unionfs \
58	newfs \
59	newfs_msdos \
60	nfsiod \
61	nos-tun \
62	ping \
63	rcorder \
64	reboot \
65	recoverdisk \
66	resolvconf \
67	restore \
68	route \
69	savecore \
70	setkey \
71	shutdown \
72	spppcontrol \
73	swapon \
74	sysctl \
75	tunefs \
76	umount \
77
78.if ${MK_ATM} != "no"
79SUBDIR+=	atm
80.endif
81
82.if ${MK_CXX} != "no"
83SUBDIR+=	devd
84.endif
85
86.if ${MK_IPFILTER} != "no"
87SUBDIR+=	ipf
88.endif
89
90.if ${MK_IPFW} != "no"
91SUBDIR+=	ipfw
92SUBDIR+=	natd
93.endif
94
95.if ${MK_PF} != "no"
96SUBDIR+=	pfctl
97SUBDIR+=	pflogd
98.endif
99
100.if ${MK_INET6} != "no"
101SUBDIR+=	ping6
102SUBDIR+=	rtsol
103.endif
104
105.if ${MK_QUOTAS} != "no"
106SUBDIR+=	quotacheck
107.endif
108
109.if ${MK_ROUTED} != "no"
110SUBDIR+=	routed
111.endif
112
113.include <bsd.arch.inc.mk>
114
115SUBDIR:=	${SUBDIR:O}
116
117.include <bsd.subdir.mk>
118