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