xref: /dragonfly/sbin/Makefile (revision dc861544)
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.18 2008/03/23 00:07:46 dillon 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	disklabel64 \
18	diskinfo \
19	dmesg \
20	dump \
21	dumpfs \
22	dumpon \
23	ffsinfo \
24	fsck \
25	fsck_msdosfs \
26	fsdb \
27	fsirand \
28	growfs \
29	gpt \
30	hammer \
31	ifconfig \
32	init \
33	ip6fw \
34	ipfw \
35	jscan \
36	kldconfig \
37	kldload \
38	kldstat \
39	kldunload \
40	ldconfig \
41	md5 \
42	mknod \
43	mountctl \
44	mount \
45	mount_cd9660 \
46	mount_ext2fs \
47	mount_hammer \
48	mount_msdos \
49	mount_nfs \
50	mount_ntfs \
51	mount_null \
52	mount_portal \
53	mount_std \
54	mount_udf \
55	mount_union \
56	mountd \
57	natacontrol \
58	natd \
59	newbtconf \
60	newfs \
61	newfs_msdos \
62	newfs_hammer \
63	nfsd \
64	nfsiod \
65	nologin \
66	nos-tun \
67	ping \
68	ping6 \
69	quotacheck \
70	reboot \
71	rconfig \
72	rcorder \
73	restore \
74	route \
75	routed \
76	rtsol \
77	rcrun \
78	savecore \
79	shutdown \
80	slattach \
81	spppcontrol \
82	startslip \
83	swapon \
84	sysctl \
85	tunefs \
86	umount \
87	vinum
88
89.if !defined(NO_IPFILTER)
90SUBDIR+=ipf \
91	ipfs \
92	ipfstat \
93	ipmon \
94	ipnat
95.endif
96
97.if ${MACHINE_ARCH} == i386
98SUBDIR+=kget \
99	mount_nwfs \
100	mount_smbfs
101.endif
102
103.if exists(${.CURDIR}/${MACHINE})
104SUBDIR+= ${MACHINE}
105.endif
106.if exists(${.CURDIR}/${MACHINE_ARCH})
107SUBDIR+= ${MACHINE_ARCH}
108.endif
109
110.include <bsd.subdir.mk>
111