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