xref: /dragonfly/sbin/Makefile (revision 16fb0422)
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#
4# XXX MISSING:		icheck ncheck
5
6SUBDIR=	adjkerntz \
7	atacontrol \
8	atm \
9	badsect \
10	camcontrol \
11	ccdconfig \
12	clri \
13	comcontrol \
14	cryptdisks \
15	devattr \
16	devd \
17	devfsctl \
18	dhclient \
19	disklabel32 \
20	disklabel64 \
21	diskinfo \
22	dmesg \
23	dump \
24	dumpfs \
25	dumpon \
26	ffsinfo \
27	fsck \
28	fsck_msdosfs \
29	fsdb \
30	fsid \
31	fsirand \
32	getdevpath \
33	growfs \
34	gpt \
35	hammer \
36	ifconfig \
37	init \
38	ip6fw \
39	ipfw \
40	iscontrol \
41	jscan \
42	kldconfig \
43	kldload \
44	kldstat \
45	kldunload \
46	ldconfig \
47	md5 \
48	mkinitrd \
49	mknod \
50	mountctl \
51	mount \
52	mount_cd9660 \
53	mount_devfs \
54	mount_ext2fs \
55	mount_hammer \
56	mount_hpfs \
57	mount_msdos \
58	mount_nfs \
59	mount_ntfs \
60	mount_null \
61	mount_portal \
62	mount_std \
63	mount_tmpfs \
64	mount_udf \
65	mount_union \
66	mountd \
67	natacontrol \
68	natd \
69	newbtconf \
70	newfs \
71	newfs_hammer \
72	newfs_msdos \
73	nfsd \
74	nfsiod \
75	nologin \
76	nos-tun \
77	ping \
78	ping6 \
79	quotacheck \
80	reboot \
81	rconfig \
82	rcorder \
83	restore \
84	route \
85	routed \
86	rtsol \
87	rcrun \
88	savecore \
89	shutdown \
90	slattach \
91	spppcontrol \
92	startslip \
93	swapon \
94	sysctl \
95	tcplay \
96	tunefs \
97	udevd \
98	umount \
99	vinum \
100	vquota
101
102.if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
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# maximum parallelism
120#
121SUBDIR_ORDERED=
122
123.include <bsd.subdir.mk>
124