Makefile revision 111716
1104349Sphk#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2104349Sphk# $FreeBSD: head/sbin/Makefile 111716 2003-03-02 01:50:33Z mckusick $
3104349Sphk
4104349Sphk# XXX MISSING:		icheck ncheck
5104349Sphk
6104349SphkSUBDIR=	adjkerntz \
7178848Scokane	atacontrol \
8104349Sphk	atm \
9104349Sphk	badsect \
10104349Sphk	camcontrol \
11104349Sphk	ccdconfig \
12104349Sphk	clri \
13104349Sphk	comcontrol \
14104349Sphk	conscontrol \
15104349Sphk	devfs \
16104349Sphk	dhclient \
17104349Sphk	dmesg \
18104349Sphk	dump \
19104349Sphk	dumpfs \
20104349Sphk	dumpon \
21104349Sphk	fsck \
22104349Sphk	fsck_ffs \
23178848Scokane	fsck_msdosfs \
24104349Sphk	fsdb \
25104349Sphk	fsirand \
26104349Sphk	gbde \
27104349Sphk	growfs \
28178848Scokane	ifconfig \
29104349Sphk	init \
30104349Sphk	ip6fw \
31104349Sphk	ipfw \
32104349Sphk	kldconfig \
33104349Sphk	kldload \
34104349Sphk	kldstat \
35104349Sphk	kldunload \
36104349Sphk	ldconfig \
37104349Sphk	md5 \
38104349Sphk	mdconfig \
39104349Sphk	mdmfs \
40104349Sphk	mknod \
41104349Sphk	mksnap_ffs \
42104349Sphk	mount \
43104349Sphk	mount_cd9660 \
44104349Sphk	mount_ext2fs \
45104349Sphk	mount_msdosfs \
46104349Sphk	mount_nfs \
47104349Sphk	mount_ntfs \
48104349Sphk	mount_nullfs \
49104349Sphk	mount_portalfs \
50104349Sphk	mount_std \
51104349Sphk	mount_udf \
52104349Sphk	mount_umapfs \
53104349Sphk	mount_unionfs \
54104349Sphk	natd \
55104349Sphk	newfs \
56104349Sphk	newfs_msdos \
57104349Sphk	nfsiod \
58104349Sphk	nologin \
59104349Sphk	nos-tun \
60104349Sphk	ping \
61104349Sphk	ping6 \
62104349Sphk	quotacheck \
63104349Sphk	raidctl \
64104349Sphk	rcorder \
65104349Sphk	reboot \
66104349Sphk	restore \
67104349Sphk	route \
68104349Sphk	routed \
69	rtsol \
70	savecore \
71	shutdown \
72	slattach \
73	spppcontrol \
74	startslip \
75	swapon \
76	sysctl \
77	tunefs \
78	umount \
79	vinum
80
81.if !defined(NO_CXX)
82SUBDIR+=devd
83.endif
84
85.if !defined(NO_IPFILTER)
86SUBDIR+=ipf \
87	ipfs \
88	ipfstat \
89	ipmon \
90	ipnat
91.endif
92
93.if ${MACHINE_ARCH} == "i386"
94SUBDIR+=cxconfig \
95	mount_nwfs \
96	mount_smbfs
97SUBDIR+=disklabel
98.if ${MACHINE} == "pc98"
99SUBDIR+=fdisk_pc98
100.else
101SUBDIR+=fdisk
102.endif
103.endif
104
105.if ${MACHINE_ARCH} == "ia64"
106SUBDIR+=fdisk \
107	disklabel \
108	gpt \
109	mca
110.endif
111
112.if ${MACHINE_ARCH} == "alpha"
113SUBDIR+=disklabel
114.endif
115
116.if ${MACHINE_ARCH} == "sparc64"
117SUBDIR+=sunlabel
118.endif
119
120.include <bsd.subdir.mk>
121