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