Makefile revision 100636
1274075Sngie#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2274075Sngie# $FreeBSD: head/sbin/Makefile 100636 2002-07-24 22:14:27Z peter $
3277442Sngie
4277442Sngie# XXX MISSING:		icheck ncheck
5274075Sngie
6274075SngieSUBDIR=	adjkerntz \
7277442Sngie	atacontrol \
8274075Sngie	atm \
9277442Sngie	badsect \
10277442Sngie	camcontrol \
11277442Sngie	ccdconfig \
12277442Sngie	clri \
13274075Sngie	comcontrol \
14274075Sngie	conscontrol \
15274075Sngie	devfs \
16274075Sngie	dhclient \
17274075Sngie	disklabel \
18274075Sngie	dmesg \
19274075Sngie	dump \
20274075Sngie	dumpfs \
21274075Sngie	dumpon \
22274075Sngie	fsck \
23274075Sngie	fsck_ffs \
24274075Sngie	fsck_msdosfs \
25274075Sngie	fsdb \
26274075Sngie	fsirand \
27274075Sngie	growfs \
28274075Sngie	ifconfig \
29274075Sngie	init \
30274075Sngie	ip6fw \
31274075Sngie	ipfw \
32274075Sngie	kldconfig \
33274075Sngie	kldload \
34274075Sngie	kldstat \
35274075Sngie	kldunload \
36274075Sngie	ldconfig \
37274075Sngie	md5 \
38	mdconfig \
39	mdmfs \
40	mknod \
41	mount \
42	mount_cd9660 \
43	mount_ext2fs \
44	mount_msdosfs \
45	mount_nfs \
46	mount_ntfs \
47	mount_nullfs \
48	mount_portalfs \
49	mount_std \
50	mount_udf \
51	mount_umapfs \
52	mount_unionfs \
53	natd \
54	newfs \
55	newfs_msdos \
56	nfsiod \
57	nologin \
58	nos-tun \
59	ping \
60	ping6 \
61	quotacheck \
62	rcorder \
63	reboot \
64	restore \
65	route \
66	routed \
67	rtsol \
68	savecore \
69	shutdown \
70	slattach \
71	spppcontrol \
72	startslip \
73	swapon \
74	sysctl \
75	tunefs \
76	umount \
77	vinum
78
79.if !defined(NO_IPFILTER)
80SUBDIR+=ipf \
81	ipfs \
82	ipfstat \
83	ipmon \
84	ipnat
85.endif
86
87.if ${MACHINE_ARCH} == "i386"
88SUBDIR+=cxconfig \
89	mount_nwfs \
90	mount_smbfs
91.if ${MACHINE} == "pc98"
92SUBDIR+=fdisk_pc98
93.else
94SUBDIR+=fdisk
95.endif
96.endif
97
98.if ${MACHINE_ARCH} == "ia64"
99SUBDIR+=fdisk \
100	gpt \
101	mca
102.endif
103
104.include <bsd.subdir.mk>
105