Makefile revision 100636
11539Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
21539Srgrimes# $FreeBSD: head/sbin/Makefile 100636 2002-07-24 22:14:27Z peter $
31539Srgrimes
41539Srgrimes# XXX MISSING:		icheck ncheck
51539Srgrimes
61539SrgrimesSUBDIR=	adjkerntz \
71539Srgrimes	atacontrol \
81539Srgrimes	atm \
91539Srgrimes	badsect \
101539Srgrimes	camcontrol \
111539Srgrimes	ccdconfig \
121539Srgrimes	clri \
131539Srgrimes	comcontrol \
141539Srgrimes	conscontrol \
151539Srgrimes	devfs \
161539Srgrimes	dhclient \
171539Srgrimes	disklabel \
181539Srgrimes	dmesg \
191539Srgrimes	dump \
201539Srgrimes	dumpfs \
211539Srgrimes	dumpon \
221539Srgrimes	fsck \
231539Srgrimes	fsck_ffs \
241539Srgrimes	fsck_msdosfs \
251539Srgrimes	fsdb \
261539Srgrimes	fsirand \
271539Srgrimes	growfs \
281539Srgrimes	ifconfig \
291539Srgrimes	init \
301539Srgrimes	ip6fw \
311539Srgrimes	ipfw \
321539Srgrimes	kldconfig \
331539Srgrimes	kldload \
3469793Sobrien	kldstat \
351539Srgrimes	kldunload \
361539Srgrimes	ldconfig \
371539Srgrimes	md5 \
381539Srgrimes	mdconfig \
391539Srgrimes	mdmfs \
403041Swollman	mknod \
413041Swollman	mount \
421539Srgrimes	mount_cd9660 \
431539Srgrimes	mount_ext2fs \
441539Srgrimes	mount_msdosfs \
451539Srgrimes	mount_nfs \
461570Srgrimes	mount_ntfs \
471539Srgrimes	mount_nullfs \
4840111Sjkh	mount_portalfs \
491539Srgrimes	mount_std \
501539Srgrimes	mount_udf \
511539Srgrimes	mount_umapfs \
5273986Sobrien	mount_unionfs \
531539Srgrimes	natd \
541539Srgrimes	newfs \
5569793Sobrien	newfs_msdos \
561539Srgrimes	nfsiod \
573189Spst	nologin \
581539Srgrimes	nos-tun \
591539Srgrimes	ping \
601539Srgrimes	ping6 \
611539Srgrimes	quotacheck \
6242515Sasami	rcorder \
631539Srgrimes	reboot \
641539Srgrimes	restore \
651539Srgrimes	route \
663041Swollman	routed \
671539Srgrimes	rtsol \
681539Srgrimes	savecore \
691539Srgrimes	shutdown \
701539Srgrimes	slattach \
711539Srgrimes	spppcontrol \
721539Srgrimes	startslip \
731539Srgrimes	swapon \
741539Srgrimes	sysctl \
756083Swpaul	tunefs \
7610975Sache	umount \
771539Srgrimes	vinum
783041Swollman
793041Swollman.if !defined(NO_IPFILTER)
803041SwollmanSUBDIR+=ipf \
813041Swollman	ipfs \
823041Swollman	ipfstat \
831539Srgrimes	ipmon \
84	ipnat
85.endif
86
87.if ${MACHINE_ARCH} == "i386"
88SUBDIR+=cxconfig \
89	mount_nwfs \
90	mount_smbfs
91.if ${MACHINE} == "pc98"
92SUBDIR+=fdisk_pc98
93.else
94SUBDIR+=fdisk
95.endif
96.endif
97
98.if ${MACHINE_ARCH} == "ia64"
99SUBDIR+=fdisk \
100	gpt \
101	mca
102.endif
103
104.include <bsd.subdir.mk>
105