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