xref: /freebsd/sbin/Makefile (revision 3494f7c0)
1
2.include <src.opts.mk>
3
4SUBDIR=adjkerntz \
5	camcontrol \
6	clri \
7	comcontrol \
8	conscontrol \
9	ddb \
10	devd \
11	devfs \
12	devmatch \
13	dhclient \
14	dmesg \
15	dump \
16	dumpfs \
17	dumpon \
18	etherswitchcfg \
19	ffsinfo \
20	fsck \
21	fsck_ffs \
22	fsck_msdosfs \
23	fsdb \
24	fsirand \
25	gbde \
26	geom \
27	ggate \
28	growfs \
29	gvinum \
30	ifconfig \
31	init \
32	kldconfig \
33	kldload \
34	kldstat \
35	kldunload \
36	ldconfig \
37	md5 \
38	mdconfig \
39	mdmfs \
40	mknod \
41	mksnap_ffs \
42	mount \
43	mount_cd9660 \
44	mount_fusefs \
45	mount_msdosfs \
46	mount_nfs \
47	mount_nullfs \
48	mount_udf \
49	mount_unionfs \
50	newfs \
51	newfs_msdos \
52	nfsiod \
53	nos-tun \
54	pfilctl \
55	rcorder \
56	reboot \
57	recoverdisk \
58	resolvconf \
59	restore \
60	route \
61	savecore \
62	setkey \
63	shutdown \
64	swapon \
65	sysctl \
66	tunefs \
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_NVME}+=	nvmecontrol
81SUBDIR.${MK_OPENSSL}+=	decryptcore
82SUBDIR.${MK_PF}+=	pfctl
83SUBDIR.${MK_PF}+=	pflogd
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