Makefile revision 111202
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 111202 2003-02-21 02:16:35Z obrien $
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	dmesg \
18	dump \
19	dumpfs \
20	dumpon \
21	fsck \
22	fsck_ffs \
23	fsck_msdosfs \
24	fsdb \
25	fsirand \
26	gbde \
27	growfs \
28	ifconfig \
29	init \
30	ip6fw \
31	ipfw \
32	kldconfig \
33	kldload \
34	kldstat \
35	kldunload \
36	ldconfig \
37	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	raidctl \
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_CXX)
81SUBDIR+=devd
82.endif
83
84.if !defined(NO_IPFILTER)
85SUBDIR+=ipf \
86	ipfs \
87	ipfstat \
88	ipmon \
89	ipnat
90.endif
91
92.if ${MACHINE_ARCH} == "i386"
93SUBDIR+=cxconfig \
94	mount_nwfs \
95	mount_smbfs
96SUBDIR+=disklabel
97.if ${MACHINE} == "pc98"
98SUBDIR+=fdisk_pc98
99.else
100SUBDIR+=fdisk
101.endif
102.endif
103
104.if ${MACHINE_ARCH} == "ia64"
105SUBDIR+=fdisk \
106	disklabel \
107	gpt \
108	mca
109.endif
110
111.if ${MACHINE_ARCH} == "alpha"
112SUBDIR+=disklabel
113.endif
114
115.if ${MACHINE_ARCH} == "sparc64"
116SUBDIR+=sunlabel
117.endif
118
119.include <bsd.subdir.mk>
120