Makefile revision 116473
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 116473 2003-06-17 09:12:42Z phk $
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	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	mksnap_ffs \
43	mount \
44	mount_cd9660 \
45	mount_ext2fs \
46	mount_msdosfs \
47	mount_nfs \
48	mount_ntfs \
49	mount_nullfs \
50	mount_portalfs \
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	mount_nwfs \
98	mount_smbfs
99.if ${MACHINE} == "pc98"
100SUBDIR+=fdisk_pc98
101.else
102SUBDIR+=fdisk
103.endif
104.endif
105
106.if ${MACHINE_ARCH} == "ia64"
107SUBDIR+=fdisk \
108	gpt \
109	mca
110.endif
111
112.if ${MACHINE_ARCH} == "amd64"
113SUBDIR+=fdisk
114.endif
115
116.include <bsd.subdir.mk>
117