xref: /freebsd/sbin/Makefile (revision dd3603749cb7f20a628f04d595b105962b21a3d2)
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	init \
29	kldconfig \
30	kldload \
31	kldstat \
32	kldunload \
33	ldconfig \
34	md5 \
35	mdconfig \
36	mdmfs \
37	mknod \
38	mksnap_ffs \
39	mount \
40	mount_cd9660 \
41	mount_fusefs \
42	mount_msdosfs \
43	mount_nfs \
44	mount_nullfs \
45	mount_udf \
46	mount_unionfs \
47	newfs \
48	newfs_msdos \
49	nfsiod \
50	nos-tun \
51	nvmecontrol \
52	pfilctl \
53	rcorder \
54	reboot \
55	recoverdisk \
56	resolvconf \
57	restore \
58	route \
59	savecore \
60	setkey \
61	shutdown \
62	swapon \
63	sysctl \
64	tunefs \
65	umbctl \
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