xref: /freebsd/sbin/Makefile (revision 4c9f648852629d757165796bb3cd97bb84a0e483)
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	ifconfig \
28	reroot_seed \
29	.WAIT \
30	init \
31	kldconfig \
32	kldload \
33	kldstat \
34	kldunload \
35	ldconfig \
36	md5 \
37	mdconfig \
38	mdmfs \
39	mknod \
40	mksnap_ffs \
41	mount \
42	mount_cd9660 \
43	mount_fusefs \
44	mount_msdosfs \
45	mount_nfs \
46	mount_nullfs \
47	mount_udf \
48	mount_unionfs \
49	newfs \
50	newfs_msdos \
51	nfsiod \
52	nos-tun \
53	nvmecontrol \
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	umbctl \
68	umount
69
70.if ${MK_INET} != "no" || ${MK_INET6} != "no"
71SUBDIR+=	ping
72.endif
73
74SUBDIR.${MK_CCD}+=	ccdconfig
75SUBDIR.${MK_HAST}+=	hastctl
76SUBDIR.${MK_HAST}+=	hastd
77SUBDIR.${MK_INET6}+=	rtsol
78SUBDIR.${MK_IPFILTER}+=	ipf
79SUBDIR.${MK_IPFW}+=	ipfw
80SUBDIR.${MK_IPFW}+=	natd
81SUBDIR.${MK_OPENSSL}+=	decryptcore
82SUBDIR.${MK_PF}+=	pfctl
83SUBDIR.${MK_PF}+=	pflogd
84SUBDIR.${MK_PF}+=	pflowctl
85SUBDIR.${MK_QUOTAS}+=	quotacheck
86SUBDIR.${MK_ROUTED}+=	routed
87SUBDIR.${MK_VERIEXEC}+=	veriexec
88SUBDIR.${MK_ZFS}+=	bectl
89SUBDIR.${MK_ZFS}+=	zfsbootcfg
90
91SUBDIR.${MK_TESTS}+=	tests
92
93.include <bsd.arch.inc.mk>
94
95SUBDIR_PARALLEL=
96
97.include <bsd.prog.mk>
98
99.include <bsd.subdir.mk>
100