Makefile revision 129477
12656Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
22656Srgrimes# $FreeBSD: head/sbin/Makefile 129477 2004-05-20 10:37:13Z pjd $
32656Srgrimes
42656Srgrimes# XXX MISSING:		icheck ncheck
52656Srgrimes
62656SrgrimesSUBDIR=	adjkerntz \
72656Srgrimes	atacontrol \
82656Srgrimes	${_atm} \
92656Srgrimes	badsect \
102656Srgrimes	bsdlabel \
112656Srgrimes	camcontrol \
122656Srgrimes	ccdconfig \
132656Srgrimes	clri \
142656Srgrimes	comcontrol \
152656Srgrimes	conscontrol \
162656Srgrimes	${_devd} \
172656Srgrimes	devfs \
182656Srgrimes	dhclient \
192656Srgrimes	dmesg \
202656Srgrimes	dump \
212656Srgrimes	dumpfs \
222656Srgrimes	dumpon \
232656Srgrimes	${_fdisk} \
242656Srgrimes	${_fdisk_pc98} \
252656Srgrimes	ffsinfo \
262656Srgrimes	fsck \
272656Srgrimes	fsck_ffs \
282656Srgrimes	fsck_msdosfs \
292656Srgrimes	fsdb \
302656Srgrimes	fsirand \
312656Srgrimes	gbde \
322656Srgrimes	geom \
332656Srgrimes	ggate \
342656Srgrimes	${_gpt} \
352656Srgrimes	growfs \
362656Srgrimes	ifconfig \
372656Srgrimes	init \
382656Srgrimes	${_ip6fw} \
392656Srgrimes	${_ipf} \
402656Srgrimes	${_ipfs} \
412656Srgrimes	${_ipfstat} \
422656Srgrimes	ipfw \
432656Srgrimes	${_ipmon} \
442656Srgrimes	${_ipnat} \
452656Srgrimes	kldconfig \
462656Srgrimes	kldload \
472656Srgrimes	kldstat \
482656Srgrimes	kldunload \
492656Srgrimes	ldconfig \
502656Srgrimes	${_mca} \
512656Srgrimes	md5 \
522656Srgrimes	mdconfig \
532656Srgrimes	mdmfs \
542656Srgrimes	mknod \
552656Srgrimes	mksnap_ffs \
562656Srgrimes	mount \
572656Srgrimes	mount_cd9660 \
582656Srgrimes	mount_ext2fs \
592656Srgrimes	mount_msdosfs \
602656Srgrimes	mount_nfs \
612656Srgrimes	mount_nfs4 \
622656Srgrimes	mount_ntfs \
632656Srgrimes	mount_nullfs \
642656Srgrimes	mount_std \
65	mount_udf \
66	mount_umapfs \
67	mount_unionfs \
68	natd \
69	newfs \
70	newfs_msdos \
71	nfsiod \
72	nos-tun \
73	${_pfctl} \
74	${_pflogd} \
75	ping \
76	${_ping6} \
77	quotacheck \
78	rcorder \
79	reboot \
80	restore \
81	route \
82	routed \
83	rtsol \
84	savecore \
85	${_sconfig} \
86	shutdown \
87	slattach \
88	spppcontrol \
89	startslip \
90	sunlabel \
91	swapon \
92	sysctl \
93	tunefs \
94	umount \
95	${_vinum}
96
97.if !defined(NOATM)
98_atm=		atm
99.endif
100
101.if !defined(NO_CXX)
102_devd=		devd
103.endif
104
105.if !defined(NO_IPFILTER)
106_ipf=		ipf
107_ipfs=		ipfs
108_ipfstat=	ipfstat
109_ipmon=		ipmon
110_ipnat=		ipnat
111.endif
112
113.if !defined(NO_PF)
114_pfctl=		pfctl
115_pflogd=	pflogd
116.endif
117
118.if !defined(NOINET6)
119_ip6fw=		ip6fw
120_ping6=		ping6
121.endif
122
123.if !defined(NO_VINUM)
124_vinum=		vinum
125.endif
126
127.if ${MACHINE_ARCH} == "i386"
128.if ${MACHINE} == "i386"
129_fdisk=		fdisk
130.elif ${MACHINE} == "pc98"
131_fdisk_pc98=	fdisk_pc98
132.endif
133_sconfig=	sconfig
134.endif
135
136.if ${MACHINE_ARCH} == "amd64"
137_fdisk=		fdisk
138.endif
139
140.if ${MACHINE_ARCH} == "ia64"
141_fdisk=		fdisk
142_mca=		mca
143.endif
144
145.if ${MACHINE_ARCH} != "sparc64"
146_gpt=		gpt
147.endif
148
149.include <bsd.subdir.mk>
150