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