Makefile revision 124197
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 124197 2004-01-06 21:05:13Z alfred $
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_nfs4 \
48	mount_ntfs \
49	mount_nullfs \
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	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	sunlabel \
75	swapon \
76	sysctl \
77	tunefs \
78	umount
79
80.if !defined(NOATM)
81SUBDIR+=atm
82.endif
83
84.if !defined(NO_CXX)
85SUBDIR+=devd
86.endif
87
88.if !defined(NO_IPFILTER)
89SUBDIR+=ipf \
90	ipfs \
91	ipfstat \
92	ipmon \
93	ipnat
94.endif
95
96.if !defined(NOINET6)
97SUBDIR+=ip6fw \
98	ping6
99.endif
100
101.if !defined(NO_VINUM)
102SUBDIR+=vinum
103.endif
104
105.if ${MACHINE_ARCH} == "i386"
106SUBDIR+=sconfig
107.if ${MACHINE} == "pc98"
108SUBDIR+=fdisk_pc98
109.else
110SUBDIR+=fdisk
111.endif
112.endif
113
114.if ${MACHINE_ARCH} == "ia64"
115SUBDIR+=fdisk \
116	gpt \
117	mca
118.endif
119
120.if ${MACHINE_ARCH} == "amd64"
121SUBDIR+=fdisk \
122	gpt
123.endif
124
125.include <bsd.subdir.mk>
126