xref: /freebsd/sbin/Makefile (revision e28a4053)
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	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	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_msdosfs \
52	mount_nfs \
53	mount_ntfs \
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	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_IPFILTER} != "no"
85SUBDIR+=	ipf
86.endif
87
88.if ${MK_IPFW} != "no"
89SUBDIR+=	ipfw
90SUBDIR+=	natd
91.endif
92
93.if ${MK_PF} != "no"
94SUBDIR+=	pfctl
95SUBDIR+=	pflogd
96.endif
97
98.if ${MK_INET6} != "no"
99SUBDIR+=	ping6
100SUBDIR+=	rtsol
101.endif
102
103.if ${MK_QUOTAS} != "no"
104SUBDIR+=	quotacheck
105.endif
106
107.if ${MK_ROUTED} != "no"
108SUBDIR+=	routed
109.endif
110
111.include <bsd.arch.inc.mk>
112
113SUBDIR:=	${SUBDIR:O}
114
115.include <bsd.subdir.mk>
116