xref: /dragonfly/sbin/Makefile (revision 684cb317)
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	badsect \
8	camcontrol \
9	ccdconfig \
10	clri \
11	comcontrol \
12	cryptdisks \
13	devattr \
14	devd \
15	devfsctl \
16	dhclient \
17	disklabel32 \
18	disklabel64 \
19	diskinfo \
20	dmesg \
21	dump \
22	dumpfs \
23	dumpon \
24	ffsinfo \
25	fsck \
26	fsck_msdosfs \
27	fsdb \
28	fsid \
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	mkinitrd \
47	mountctl \
48	mount \
49	mount_ufs \
50	mount_cd9660 \
51	mount_devfs \
52	mount_dirfs \
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	svc \
95	tcplay \
96	tunefs \
97	udevd \
98	umount \
99	usched \
100	vinum \
101	vquota
102
103.if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
104.if ${MACHINE_ARCH} == i386
105SUBDIR+=kget
106.endif
107SUBDIR+=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