Makefile revision 96884
1219820Sjeff#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2272407Shselasky# $FreeBSD: head/sbin/Makefile 96884 2002-05-19 00:09:30Z rwatson $
3219820Sjeff
4219820Sjeff# XXX MISSING:		icheck ncheck
5219820Sjeff
6219820SjeffSUBDIR=	adjkerntz \
7219820Sjeff	atacontrol \
8219820Sjeff	atm \
9219820Sjeff	badsect \
10219820Sjeff	camcontrol \
11219820Sjeff	ccdconfig \
12219820Sjeff	clri \
13219820Sjeff	comcontrol \
14219820Sjeff	conscontrol \
15219820Sjeff	dhclient \
16219820Sjeff	disklabel \
17219820Sjeff	dmesg \
18219820Sjeff	dump \
19219820Sjeff	dumpfs \
20219820Sjeff	dumpon \
21219820Sjeff	ffsinfo \
22219820Sjeff	fsck \
23219820Sjeff	fsck_ffs \
24219820Sjeff	fsck_msdosfs \
25219820Sjeff	fsdb \
26219820Sjeff	fsirand \
27219820Sjeff	growfs \
28219820Sjeff	ifconfig \
29219820Sjeff	init \
30219820Sjeff	ip6fw \
31219820Sjeff	ipfw \
32219820Sjeff	kldconfig \
33219820Sjeff	kldload \
34219820Sjeff	kldstat \
35219820Sjeff	kldunload \
36219820Sjeff	ldconfig \
37272407Shselasky	md5 \
38219820Sjeff	mdconfig \
39219820Sjeff	mdmfs \
40219820Sjeff	mknod \
41272407Shselasky	mount \
42219820Sjeff	mount_cd9660 \
43272407Shselasky	mount_ext2fs \
44272407Shselasky	mount_msdosfs \
45272407Shselasky	mount_nfs \
46272407Shselasky	mount_ntfs \
47272407Shselasky	mount_nullfs \
48219820Sjeff	mount_portalfs \
49219820Sjeff	mount_std \
50219820Sjeff	mount_udf \
51219820Sjeff	mount_umapfs \
52219820Sjeff	mount_unionfs \
53219820Sjeff	mountd \
54219820Sjeff	natd \
55219820Sjeff	newfs \
56219820Sjeff	newfs_msdos \
57219820Sjeff	nfsd \
58219820Sjeff	nologin \
59272407Shselasky	nos-tun \
60219820Sjeff	ping \
61219820Sjeff	ping6 \
62219820Sjeff	quotacheck \
63219820Sjeff	reboot \
64219820Sjeff	restore \
65219820Sjeff	route \
66219820Sjeff	routed \
67219820Sjeff	rtsol \
68219820Sjeff	savecore \
69219820Sjeff	shutdown \
70219820Sjeff	slattach \
71219820Sjeff	spppcontrol \
72298775Shselasky	startslip \
73272407Shselasky	swapon \
74272407Shselasky	sysctl \
75272407Shselasky	tunefs \
76219820Sjeff	umount \
77219820Sjeff	vinum
78219820Sjeff
79219820Sjeff.if !defined(NO_IPFILTER)
80219820SjeffSUBDIR+=ipf \
81219820Sjeff	ipfs \
82219820Sjeff	ipfstat \
83272407Shselasky	ipmon \
84272407Shselasky	ipnat
85219820Sjeff.endif
86272407Shselasky
87272407Shselasky.if ${MACHINE_ARCH} == "i386"
88272407ShselaskySUBDIR+=cxconfig \
89272407Shselasky	mount_nwfs \
90272407Shselasky	mount_smbfs \
91272407Shselasky	nextboot
92272407Shselasky.if ${MACHINE} == "pc98"
93272407ShselaskySUBDIR+=fdisk_pc98
94272407Shselasky.else
95272407ShselaskySUBDIR+=fdisk
96272407Shselasky.endif
97219820Sjeff.endif
98219820Sjeff
99219820Sjeff.if ${MACHINE_ARCH} == "ia64"
100219820SjeffSUBDIR+=fdisk
101219820Sjeff.endif
102219820Sjeff
103272407Shselasky.include <bsd.subdir.mk>
104272407Shselasky