Makefile revision 126175
1185573Srwatson#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2155131Srwatson# $FreeBSD: head/sbin/Makefile 126175 2004-02-23 20:06:56Z pjd $
3168777Srwatson
4155131Srwatson# XXX MISSING:		icheck ncheck
5155131Srwatson
6155131SrwatsonSUBDIR=	adjkerntz \
7155131Srwatson	atacontrol \
8168777Srwatson	${_atm} \
9155131Srwatson	badsect \
10155131Srwatson	bsdlabel \
11168777Srwatson	camcontrol \
12185573Srwatson	ccdconfig \
13155131Srwatson	clri \
14168777Srwatson	comcontrol \
15168777Srwatson	conscontrol \
16155131Srwatson	${_devd} \
17155131Srwatson	devfs \
18155131Srwatson	dhclient \
19155131Srwatson	dmesg \
20155131Srwatson	dump \
21155131Srwatson	dumpfs \
22155131Srwatson	dumpon \
23155131Srwatson	${_fdisk} \
24155131Srwatson	${_fdisk_pc98} \
25155131Srwatson	ffsinfo \
26155131Srwatson	fsck \
27155131Srwatson	fsck_ffs \
28155364Srwatson	fsck_msdosfs \
29155131Srwatson	fsdb \
30155131Srwatson	fsirand \
31155131Srwatson	gbde \
32155131Srwatson	gconcat \
33168777Srwatson	${_gpt} \
34155131Srwatson	growfs \
35155131Srwatson	ifconfig \
36168777Srwatson	init \
37155131Srwatson	${_ip6fw} \
38155131Srwatson	${_ipf} \
39168777Srwatson	${_ipfs} \
40155131Srwatson	${_ipfstat} \
41155364Srwatson	ipfw \
42155131Srwatson	${_ipmon} \
43168777Srwatson	${_ipnat} \
44155364Srwatson	kldconfig \
45155131Srwatson	kldload \
46155131Srwatson	kldstat \
47155131Srwatson	kldunload \
48155131Srwatson	ldconfig \
49155131Srwatson	${_mca} \
50155131Srwatson	md5 \
51155131Srwatson	mdconfig \
52155131Srwatson	mdmfs \
53155131Srwatson	mknod \
54155131Srwatson	mksnap_ffs \
55168777Srwatson	mount \
56155131Srwatson	mount_cd9660 \
57155131Srwatson	mount_ext2fs \
58168777Srwatson	mount_msdosfs \
59168777Srwatson	mount_nfs \
60168777Srwatson	mount_nfs4 \
61168777Srwatson	mount_ntfs \
62168777Srwatson	mount_nullfs \
63168777Srwatson	mount_std \
64168777Srwatson	mount_udf \
65168777Srwatson	mount_umapfs \
66168777Srwatson	mount_unionfs \
67168777Srwatson	natd \
68155131Srwatson	newfs \
69168777Srwatson	newfs_msdos \
70155131Srwatson	nfsiod \
71155131Srwatson	nologin \
72168777Srwatson	nos-tun \
73168777Srwatson	ping \
74168777Srwatson	${_ping6} \
75168777Srwatson	quotacheck \
76155131Srwatson	raidctl \
77155131Srwatson	rcorder \
78155131Srwatson	reboot \
79	restore \
80	route \
81	routed \
82	rtsol \
83	savecore \
84	${_sconfig} \
85	shutdown \
86	slattach \
87	spppcontrol \
88	startslip \
89	sunlabel \
90	swapon \
91	sysctl \
92	tunefs \
93	umount \
94	${_vinum}
95
96.if !defined(NOATM)
97_atm=		atm
98.endif
99
100.if !defined(NO_CXX)
101_devd=		devd
102.endif
103
104.if !defined(NO_IPFILTER)
105_ipf=		ipf
106_ipfs=		ipfs
107_ipfstat=	ipfstat
108_ipmon=		ipmon
109_ipnat=		ipnat
110.endif
111
112.if !defined(NOINET6)
113_ip6fw=		ip6fw
114_ping6=		ping6
115.endif
116
117.if !defined(NO_VINUM)
118_vinum=		vinum
119.endif
120
121.if ${MACHINE_ARCH} == "i386"
122.if ${MACHINE} == "i386"
123_fdisk=		fdisk
124.elif ${MACHINE} == "pc98"
125_fdisk_pc98=	fdisk_pc98
126.endif
127_sconfig=	sconfig
128.endif
129
130.if ${MACHINE_ARCH} == "amd64"
131_fdisk=		fdisk
132_gpt=		gpt
133.endif
134
135.if ${MACHINE_ARCH} == "ia64"
136_fdisk=		fdisk
137_gpt=		gpt
138_mca=		mca
139.endif
140
141.include <bsd.subdir.mk>
142