xref: /dragonfly/sbin/Makefile (revision d3e43a7a)
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#
4# XXX MISSING:		icheck ncheck
5
6SUBDIR=	adjkerntz \
7	badsect \
8	camcontrol \
9	ccdconfig \
10	clri \
11	comcontrol \
12	cryptdisks \
13	devattr \
14	devd \
15	devfsctl \
16	dhclient \
17	disklabel32 \
18	disklabel64 \
19	diskinfo \
20	dmesg \
21	dump \
22	dumpfs \
23	dumpon \
24	ffsinfo \
25	fsck \
26	fsck_msdosfs \
27	fsdb \
28	fsid \
29	fsirand \
30	getdevpath \
31	growfs \
32	gpt \
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	mkinitrd \
49	mountctl \
50	mount \
51	mount_ufs \
52	mount_cd9660 \
53	mount_devfs \
54	mount_dirfs \
55	mount_ext2fs \
56	mount_hammer \
57	${_mount_hammer2} \
58	mount_hpfs \
59	mount_msdos \
60	mount_nfs \
61	mount_ntfs \
62	mount_null \
63	mount_portal \
64	mount_std \
65	mount_tmpfs \
66	mount_udf \
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	ping \
80	ping6 \
81	quotacheck \
82	reboot \
83	rconfig \
84	rcorder \
85	restore \
86	route \
87	routed \
88	rtsol \
89	rcrun \
90	savecore \
91	shutdown \
92	slattach \
93	spppcontrol \
94	startslip \
95	swapon \
96	sysctl \
97	svc \
98	tcplay \
99	tunefs \
100	udevd \
101	umount \
102	usched \
103	vinum \
104	vquota
105
106.if ${MACHINE_ARCH} == "x86_64"
107SUBDIR+=mount_smbfs \
108	fdisk \
109	nextboot
110.endif
111
112.if exists(${.CURDIR}/${MACHINE})
113SUBDIR+= ${MACHINE}
114.endif
115.if exists(${.CURDIR}/${MACHINE_ARCH})
116SUBDIR+= ${MACHINE_ARCH}
117.endif
118
119# include hammer2 utilities
120#
121.if defined(WANT_HAMMER2)
122_mount_hammer2= mount_hammer2
123_newfs_hammer2=	newfs_hammer2
124_hammer2=	hammer2
125.endif
126
127# maximum parallelism
128#
129SUBDIR_ORDERED=
130
131.include <bsd.subdir.mk>
132