xref: /dragonfly/sbin/Makefile (revision 335b9e93)
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: src/sbin/Makefile,v 1.77.2.9 2002/08/08 09:03:46 ru Exp $
3
4SUBDIR=	adjkerntz \
5	badsect \
6	camcontrol \
7	ccdconfig \
8	clri \
9	comcontrol \
10	cryptdisks \
11	devattr \
12	devd \
13	devfsctl \
14	dhclient \
15	dhcpcd \
16	diskinfo \
17	disklabel32 \
18	disklabel64 \
19	dmesg \
20	dump \
21	dumpfs \
22	dumpon \
23	ffsinfo \
24	fsck \
25	fsck_msdosfs \
26	fsck_hammer2 \
27	fsdb \
28	fsid \
29	fsirand \
30	getdevpath \
31	gpt \
32	growfs \
33	hammer \
34	hammer2 \
35	ifconfig \
36	init \
37	ip6fw \
38	ipfw \
39	ipfw3 \
40	iscontrol \
41	jscan \
42	kldconfig \
43	kldload \
44	kldstat \
45	kldunload \
46	ldconfig \
47	md5 \
48	mount \
49	mount_autofs \
50	mount_cd9660 \
51	mount_devfs \
52	mount_dirfs \
53	mount_ext2fs \
54	mount_fuse \
55	mount_hammer \
56	mount_hammer2 \
57	mount_hpfs \
58	mount_msdos \
59	mount_nfs \
60	mount_ntfs \
61	mount_null \
62	mount_std \
63	mount_tmpfs \
64	mount_udf \
65	mount_ufs \
66	mountctl \
67	mountd \
68	natacontrol \
69	natd \
70	newbtconf \
71	newfs \
72	newfs_hammer \
73	newfs_hammer2 \
74	newfs_msdos \
75	nfsd \
76	nfsiod \
77	nologin \
78	nos-tun \
79	nvmectl \
80	ping \
81	ping6 \
82	quotacheck \
83	rconfig \
84	rcorder \
85	rcrun \
86	reboot \
87	resolvconf \
88	restore \
89	route \
90	routed \
91	rtsol \
92	savecore \
93	shutdown \
94	slattach \
95	spppcontrol \
96	startslip \
97	svc \
98	swapon \
99	sysctl \
100	tcplay \
101	tunefs \
102	udevd \
103	umount \
104	usched \
105	vinum \
106	vquota
107
108.if ${MACHINE_ARCH} == "x86_64"
109SUBDIR+=mount_smbfs \
110	fdisk
111.endif
112
113.if exists(${.CURDIR}/${MACHINE})
114SUBDIR+= ${MACHINE}
115.endif
116.if exists(${.CURDIR}/${MACHINE_ARCH})
117SUBDIR+= ${MACHINE_ARCH}
118.endif
119
120# maximum parallelism
121#
122SUBDIR_ORDERED=
123
124.include <bsd.subdir.mk>
125