xref: /dragonfly/sbin/Makefile (revision 235099c3)
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_msdos \
54	mount_nfs \
55	mount_ntfs \
56	mount_null \
57	mount_portal \
58	mount_std \
59	mount_udf \
60	mount_union \
61	mountd \
62	natacontrol \
63	natd \
64	newbtconf \
65	newfs \
66	newfs_hammer \
67	newfs_msdos \
68	nfsd \
69	nfsiod \
70	nologin \
71	nos-tun \
72	ping \
73	ping6 \
74	quotacheck \
75	reboot \
76	rconfig \
77	rcorder \
78	restore \
79	route \
80	routed \
81	rtsol \
82	rcrun \
83	savecore \
84	shutdown \
85	slattach \
86	spppcontrol \
87	startslip \
88	swapon \
89	sysctl \
90	tunefs \
91	umount \
92	vinum
93
94.if !defined(NO_IPFILTER)
95SUBDIR+=ipf \
96	ipfs \
97	ipfstat \
98	ipmon \
99	ipnat
100.endif
101
102.if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == amd64
103.if ${MACHINE_ARCH} == i386
104SUBDIR+=kget
105.endif
106SUBDIR+=mount_nwfs \
107	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 <bsd.subdir.mk>
120