Makefile revision 123114
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 123114 2003-12-02 21:52:14Z brooks $
3
4# XXX MISSING:		icheck ncheck
5
6SUBDIR=	adjkerntz \
7	atacontrol \
8	badsect \
9	bsdlabel \
10	camcontrol \
11	ccdconfig \
12	clri \
13	comcontrol \
14	conscontrol \
15	devfs \
16	dhclient \
17	dmesg \
18	dump \
19	dumpfs \
20	dumpon \
21	ffsinfo \
22	fsck \
23	fsck_ffs \
24	fsck_msdosfs \
25	fsdb \
26	fsirand \
27	gbde \
28	growfs \
29	ifconfig \
30	init \
31	ipfw \
32	kldconfig \
33	kldload \
34	kldstat \
35	kldunload \
36	ldconfig \
37	md5 \
38	mdconfig \
39	mdmfs \
40	mknod \
41	mksnap_ffs \
42	mount \
43	mount_cd9660 \
44	mount_ext2fs \
45	mount_msdosfs \
46	mount_nfs \
47	mount_ntfs \
48	mount_nullfs \
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	quotacheck \
61	raidctl \
62	rcorder \
63	reboot \
64	restore \
65	route \
66	routed \
67	rtsol \
68	savecore \
69	shutdown \
70	slattach \
71	spppcontrol \
72	startslip \
73	sunlabel \
74	swapon \
75	sysctl \
76	tunefs \
77	umount
78
79.if !defined(NOATM)
80SUBDIR+=atm
81.endif
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 !defined(NOINET6)
96SUBDIR+=ip6fw \
97	ping6
98.endif
99
100.if !defined(NO_VINUM)
101SUBDIR+=vinum
102.endif
103
104.if ${MACHINE_ARCH} == "i386"
105SUBDIR+=cxconfig
106.if ${MACHINE} == "pc98"
107SUBDIR+=fdisk_pc98
108.else
109SUBDIR+=fdisk
110.endif
111.endif
112
113.if ${MACHINE_ARCH} == "ia64"
114SUBDIR+=fdisk \
115	gpt \
116	mca
117.endif
118
119.if ${MACHINE_ARCH} == "amd64"
120SUBDIR+=fdisk \
121	gpt
122.endif
123
124.include <bsd.subdir.mk>
125