Makefile revision 133270
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 133270 2004-08-07 16:16:59Z le $
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	${_devd} \
17	devfs \
18	dhclient \
19	dmesg \
20	dump \
21	dumpfs \
22	dumpon \
23	${_fdisk} \
24	${_fdisk_pc98} \
25	ffsinfo \
26	fsck \
27	fsck_ffs \
28	fsck_msdosfs \
29	fsdb \
30	fsirand \
31	gbde \
32	geom \
33	ggate \
34	${_gpt} \
35	growfs \
36	gvinum \
37	ifconfig \
38	init \
39	${_ip6fw} \
40	${_ipf} \
41	${_ipfs} \
42	${_ipfstat} \
43	ipfw \
44	${_ipmon} \
45	${_ipnat} \
46	kldconfig \
47	kldload \
48	kldstat \
49	kldunload \
50	ldconfig \
51	${_mca} \
52	md5 \
53	mdconfig \
54	mdmfs \
55	mknod \
56	mksnap_ffs \
57	mount \
58	mount_cd9660 \
59	mount_ext2fs \
60	mount_msdosfs \
61	mount_nfs \
62	mount_nfs4 \
63	mount_ntfs \
64	mount_nullfs \
65	mount_std \
66	mount_udf \
67	mount_umapfs \
68	mount_unionfs \
69	natd \
70	newfs \
71	newfs_msdos \
72	nfsiod \
73	nos-tun \
74	${_pfctl} \
75	${_pflogd} \
76	ping \
77	${_ping6} \
78	quotacheck \
79	rcorder \
80	reboot \
81	restore \
82	route \
83	routed \
84	rtsol \
85	savecore \
86	${_sconfig} \
87	shutdown \
88	slattach \
89	spppcontrol \
90	startslip \
91	sunlabel \
92	swapon \
93	sysctl \
94	tunefs \
95	umount \
96	${_vinum}
97
98.if !defined(NOATM)
99_atm=		atm
100.endif
101
102.if !defined(NO_CXX)
103_devd=		devd
104.endif
105
106.if !defined(NO_IPFILTER)
107_ipf=		ipf
108_ipfs=		ipfs
109_ipfstat=	ipfstat
110_ipmon=		ipmon
111_ipnat=		ipnat
112.endif
113
114.if !defined(NO_PF)
115_pfctl=		pfctl
116_pflogd=	pflogd
117.endif
118
119.if !defined(NOINET6)
120_ip6fw=		ip6fw
121_ping6=		ping6
122.endif
123
124.if !defined(NO_VINUM)
125_vinum=		vinum
126.endif
127
128.if ${MACHINE_ARCH} == "i386"
129.if ${MACHINE} == "i386"
130_fdisk=		fdisk
131.elif ${MACHINE} == "pc98"
132_fdisk_pc98=	fdisk_pc98
133.endif
134_sconfig=	sconfig
135.endif
136
137.if ${MACHINE_ARCH} == "amd64"
138_fdisk=		fdisk
139.endif
140
141.if ${MACHINE_ARCH} == "ia64"
142_fdisk=		fdisk
143_mca=		mca
144.endif
145
146.if ${MACHINE_ARCH} != "sparc64"
147_gpt=		gpt
148.endif
149
150.include <bsd.subdir.mk>
151