Makefile revision 180331
126206Swpaul#	@(#)Makefile	8.5 (Berkeley) 3/31/94
226206Swpaul# $FreeBSD: head/sbin/Makefile 180331 2008-07-06 20:57:35Z marcel $
326206Swpaul
426206Swpaul.include <bsd.own.mk>
526206Swpaul
626206Swpaul# XXX MISSING:		icheck ncheck
726206Swpaul
826206SwpaulSUBDIR=	adjkerntz \
926206Swpaul	atacontrol \
1026206Swpaul	${_atm} \
1126206Swpaul	badsect \
1226206Swpaul	${_bsdlabel} \
1326206Swpaul	camcontrol \
1426206Swpaul	ccdconfig \
1526206Swpaul	clri \
1626206Swpaul	comcontrol \
1726206Swpaul	conscontrol \
1826206Swpaul	ddb \
1926206Swpaul	${_devd} \
2026206Swpaul	devfs \
2126206Swpaul	dhclient \
2226206Swpaul	dmesg \
2326206Swpaul	dump \
2426206Swpaul	dumpfs \
2526206Swpaul	dumpon \
2626206Swpaul	${_fdisk} \
2726206Swpaul	${_fdisk_pc98} \
2826206Swpaul	ffsinfo \
2926206Swpaul	fsck \
3026206Swpaul	fsck_ffs \
3126206Swpaul	fsck_msdosfs \
3226206Swpaul	fsdb \
3326206Swpaul	fsirand \
34114629Sobrien	gbde \
35114629Sobrien	geom \
3626206Swpaul	ggate \
3726206Swpaul	growfs \
3826206Swpaul	gvinum \
3926206Swpaul	idmapd \
4026206Swpaul	ifconfig \
4126206Swpaul	init \
4226206Swpaul	${_ipf} \
4326206Swpaul	ipfw \
4426206Swpaul	iscontrol \
4526206Swpaul	kldconfig \
4626206Swpaul	kldload \
4726206Swpaul	kldstat \
4826206Swpaul	kldunload \
4926206Swpaul	ldconfig \
5026206Swpaul	${_mca} \
5126206Swpaul	md5 \
5226206Swpaul	mdconfig \
5326206Swpaul	mdmfs \
5426206Swpaul	mknod \
5526206Swpaul	mksnap_ffs \
5626206Swpaul	mount \
5726206Swpaul	mount_cd9660 \
5826206Swpaul	mount_msdosfs \
5926206Swpaul	mount_nfs \
6026206Swpaul	mount_ntfs \
6126206Swpaul	mount_nullfs \
6226206Swpaul	mount_udf \
6326206Swpaul	mount_unionfs \
6426206Swpaul	natd \
6526206Swpaul	newfs \
6626206Swpaul	newfs_msdos \
6726206Swpaul	nfsiod \
6826206Swpaul	nos-tun \
6926206Swpaul	${_pfctl} \
7026206Swpaul	${_pflogd} \
7126206Swpaul	ping \
7226206Swpaul	${_ping6} \
7326206Swpaul	quotacheck \
7426206Swpaul	rcorder \
7526206Swpaul	reboot \
7626206Swpaul	recoverdisk \
7726206Swpaul	restore \
7826206Swpaul	route \
7926206Swpaul	routed \
8026206Swpaul	${_rtsol} \
8126206Swpaul	savecore \
8226206Swpaul	${_sconfig} \
8326206Swpaul	setkey \
8426206Swpaul	shutdown \
8526206Swpaul	slattach \
8626206Swpaul	spppcontrol \
8726206Swpaul	startslip \
88	${_sunlabel} \
89	swapon \
90	sysctl \
91	tunefs \
92	umount \
93
94.if ${MK_ATM} != "no"
95_atm=		atm
96.endif
97
98.if ${MK_CXX} != "no"
99_devd=		devd
100.endif
101
102.if ${MK_IPFILTER} != "no"
103_ipf=		ipf
104.endif
105
106.if ${MK_PF} != "no"
107_pfctl=		pfctl
108_pflogd=	pflogd
109.endif
110
111.if ${MK_INET6} != "no"
112_ping6=		ping6
113_rtsol=		rtsol
114.endif
115
116.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
117_bsdlabel=	bsdlabel
118.endif
119
120.if ${MACHINE_ARCH} == "i386"
121.if ${MACHINE} == "i386"
122_fdisk=		fdisk
123.elif ${MACHINE} == "pc98"
124_fdisk_pc98=	fdisk_pc98
125.endif
126_sconfig=	sconfig
127.endif
128
129.if ${MACHINE_ARCH} == "amd64"
130_fdisk=		fdisk
131.endif
132
133.if ${MACHINE_ARCH} == "arm"
134_fdisk=		fdisk
135.endif
136
137.if ${MACHINE_ARCH} == "ia64"
138_mca=		mca
139.endif
140
141.if ${MACHINE_ARCH} == "sparc64"
142_sunlabel=	sunlabel
143.endif
144
145.include <bsd.subdir.mk>
146