xref: /freebsd/sbin/Makefile (revision aa1a8ff2d6dbc51ef058f46f3db5a8bb77967145)
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	nvmecontrol \
55	pfilctl \
56	rcorder \
57	reboot \
58	recoverdisk \
59	resolvconf \
60	restore \
61	route \
62	savecore \
63	setkey \
64	shutdown \
65	swapon \
66	sysctl \
67	tunefs \
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