xref: /dragonfly/sbin/Makefile (revision 6fb88001)
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# $DragonFly: src/sbin/Makefile,v 1.10 2005/12/21 16:33:20 corecode Exp $
4#
5# XXX MISSING:		icheck ncheck
6
7SUBDIR=	adjkerntz \
8	atacontrol \
9	atm \
10	badsect \
11	brconfig \
12	camcontrol \
13	ccdconfig \
14	clri \
15	comcontrol \
16	dhclient \
17	disklabel \
18	dmesg \
19	dump \
20	dumpfs \
21	dumpon \
22	ffsinfo \
23	fsck \
24	fsck_msdosfs \
25	fsdb \
26	fsirand \
27	growfs \
28	ifconfig \
29	init \
30	ip6fw \
31	ipfw \
32	jscan \
33	kldconfig \
34	kldload \
35	kldstat \
36	kldunload \
37	ldconfig \
38	md5 \
39	mknod \
40	mountctl \
41	mount \
42	mount_cd9660 \
43	mount_ext2fs \
44	mount_msdos \
45	mount_nfs \
46	mount_ntfs \
47	mount_null \
48	mount_portal \
49	mount_std \
50	mount_udf \
51	mount_umap \
52	mount_union \
53	mountd \
54	natd \
55	newbtconf \
56	newfs \
57	newfs_msdos \
58	nfsd \
59	nfsiod \
60	nologin \
61	nos-tun \
62	ping \
63	ping6 \
64	quotacheck \
65	reboot \
66	rconfig \
67	rcorder \
68	restore \
69	route \
70	routed \
71	rtsol \
72	rcrun \
73	savecore \
74	shutdown \
75	slattach \
76	spppcontrol \
77	startslip \
78	swapon \
79	sysctl \
80	tunefs \
81	umount \
82	vinum
83
84.if !defined(NO_IPFILTER)
85SUBDIR+=ipf \
86	ipfs \
87	ipfstat \
88	ipmon \
89	ipnat
90.endif
91
92.if ${MACHINE_ARCH} == i386
93SUBDIR+=kget \
94	mount_nwfs \
95	mount_smbfs
96.endif
97
98.if exists(${.CURDIR}/${MACHINE})
99SUBDIR+= ${MACHINE}
100.endif
101
102.include <bsd.subdir.mk>
103