xref: /freebsd/sbin/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1.include <src.opts.mk>
2
3SUBDIR=adjkerntz \
4	camcontrol \
5	clri \
6	comcontrol \
7	conscontrol \
8	ddb \
9	devd \
10	devfs \
11	devmatch \
12	dhclient \
13	dmesg \
14	dump \
15	dumpfs \
16	dumpon \
17	etherswitchcfg \
18	ffsinfo \
19	fsck \
20	fsck_ffs \
21	fsck_msdosfs \
22	fsdb \
23	fsirand \
24	geom \
25	ggate \
26	growfs \
27	gvinum \
28	ifconfig \
29	init \
30	kldconfig \
31	kldload \
32	kldstat \
33	kldunload \
34	ldconfig \
35	md5 \
36	mdconfig \
37	mdmfs \
38	mknod \
39	mksnap_ffs \
40	mount \
41	mount_cd9660 \
42	mount_fusefs \
43	mount_msdosfs \
44	mount_nfs \
45	mount_nullfs \
46	mount_udf \
47	mount_unionfs \
48	newfs \
49	newfs_msdos \
50	nfsiod \
51	nos-tun \
52	nvmecontrol \
53	pfilctl \
54	rcorder \
55	reboot \
56	recoverdisk \
57	resolvconf \
58	restore \
59	route \
60	savecore \
61	setkey \
62	shutdown \
63	swapon \
64	sysctl \
65	tunefs \
66	umount
67
68.if ${MK_INET} != "no" || ${MK_INET6} != "no"
69SUBDIR+=	ping
70.endif
71
72SUBDIR.${MK_CCD}+=	ccdconfig
73SUBDIR.${MK_HAST}+=	hastctl
74SUBDIR.${MK_HAST}+=	hastd
75SUBDIR.${MK_INET6}+=	rtsol
76SUBDIR.${MK_IPFILTER}+=	ipf
77SUBDIR.${MK_IPFW}+=	ipfw
78SUBDIR.${MK_IPFW}+=	natd
79SUBDIR.${MK_OPENSSL}+=	decryptcore
80SUBDIR.${MK_PF}+=	pfctl
81SUBDIR.${MK_PF}+=	pflogd
82SUBDIR.${MK_PF}+=	pflowctl
83SUBDIR.${MK_QUOTAS}+=	quotacheck
84SUBDIR.${MK_ROUTED}+=	routed
85SUBDIR.${MK_VERIEXEC}+=	veriexec
86SUBDIR.${MK_ZFS}+=	bectl
87SUBDIR.${MK_ZFS}+=	zfsbootcfg
88
89SUBDIR.${MK_TESTS}+=	tests
90
91.include <bsd.arch.inc.mk>
92
93SUBDIR_PARALLEL=
94
95.include <bsd.prog.mk>
96
97.include <bsd.subdir.mk>
98