xref: /freebsd/sbin/Makefile (revision 0f1bf1c22a0c97e84a4db19197a75952487aa20b)
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	umbctl \
67	umount
68
69.if ${MK_INET} != "no" || ${MK_INET6} != "no"
70SUBDIR+=	ping
71.endif
72
73SUBDIR.${MK_CCD}+=	ccdconfig
74SUBDIR.${MK_HAST}+=	hastctl
75SUBDIR.${MK_HAST}+=	hastd
76SUBDIR.${MK_INET6}+=	rtsol
77SUBDIR.${MK_IPFILTER}+=	ipf
78SUBDIR.${MK_IPFW}+=	ipfw
79SUBDIR.${MK_IPFW}+=	natd
80SUBDIR.${MK_OPENSSL}+=	decryptcore
81SUBDIR.${MK_PF}+=	pfctl
82SUBDIR.${MK_PF}+=	pflogd
83SUBDIR.${MK_PF}+=	pflowctl
84SUBDIR.${MK_QUOTAS}+=	quotacheck
85SUBDIR.${MK_ROUTED}+=	routed
86SUBDIR.${MK_VERIEXEC}+=	veriexec
87SUBDIR.${MK_ZFS}+=	bectl
88SUBDIR.${MK_ZFS}+=	zfsbootcfg
89
90SUBDIR.${MK_TESTS}+=	tests
91
92.include <bsd.arch.inc.mk>
93
94SUBDIR_PARALLEL=
95
96.include <bsd.prog.mk>
97
98.include <bsd.subdir.mk>
99