Makefile revision 105513
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 105513 2002-10-20 11:16:13Z phk $
3
4# XXX MISSING:		icheck ncheck
5
6SUBDIR=	adjkerntz \
7	atacontrol \
8	atm \
9	badsect \
10	camcontrol \
11	ccdconfig \
12	clri \
13	comcontrol \
14	conscontrol \
15	devfs \
16	dhclient \
17	disklabel \
18	dmesg \
19	dump \
20	dumpfs \
21	dumpon \
22	fsck \
23	fsck_ffs \
24	fsck_msdosfs \
25	fsdb \
26	fsirand \
27	gbde \
28	growfs \
29	ifconfig \
30	init \
31	ip6fw \
32	ipfw \
33	kldconfig \
34	kldload \
35	kldstat \
36	kldunload \
37	ldconfig \
38	md5 \
39	mdconfig \
40	mdmfs \
41	mknod \
42	mount \
43	mount_cd9660 \
44	mount_ext2fs \
45	mount_msdosfs \
46	mount_nfs \
47	mount_ntfs \
48	mount_nullfs \
49	mount_portalfs \
50	mount_std \
51	mount_udf \
52	mount_umapfs \
53	mount_unionfs \
54	natd \
55	newfs \
56	newfs_msdos \
57	nfsiod \
58	nologin \
59	nos-tun \
60	ping \
61	ping6 \
62	quotacheck \
63	rcorder \
64	reboot \
65	restore \
66	route \
67	routed \
68	rtsol \
69	savecore \
70	shutdown \
71	slattach \
72	spppcontrol \
73	startslip \
74	swapon \
75	sysctl \
76	tunefs \
77	umount \
78	vinum
79
80.if !defined(NO_IPFILTER)
81SUBDIR+=ipf \
82	ipfs \
83	ipfstat \
84	ipmon \
85	ipnat
86.endif
87
88.if ${MACHINE_ARCH} == "i386"
89SUBDIR+=cxconfig \
90	mount_nwfs \
91	mount_smbfs
92.if ${MACHINE} == "pc98"
93SUBDIR+=fdisk_pc98
94.else
95SUBDIR+=fdisk
96.endif
97.endif
98
99.if ${MACHINE_ARCH} == "ia64"
100SUBDIR+=fdisk \
101	gpt \
102	mca
103.endif
104
105.include <bsd.subdir.mk>
106