xref: /netbsd/sbin/Makefile (revision bf9ec67e)
1#	$NetBSD: Makefile,v 1.76 2002/01/09 22:31:57 thorpej Exp $
2#	@(#)Makefile	8.5 (Berkeley) 3/31/94
3
4# Not ported: XNSrouted enpload scsiformat startslip
5# Missing: icheck ncheck
6
7SUBDIR=	atactl badsect bim brconfig ccdconfig disklabel dkctl dmesg edlabel \
8	fastboot fdisk fsck fsirand ifconfig init ldconfig lmcctl \
9	mbrlabel mknod modload modunload mount newbtconf nologin ping \
10	pppoectl raidctl reboot rcorder rndctl route routed savecore scsictl \
11	shutdown slattach swapctl sysctl ttyflags umount wdogctl wsconsctl
12
13# support for various file systems
14SUBDIR+= fsck_ext2fs
15SUBDIR+= newfs fsck_ffs fsdb dump restore clri tunefs
16SUBDIR+= newfs_lfs fsck_lfs dump_lfs
17SUBDIR+= newfs_msdos fsck_msdos
18SUBDIR+= mount_portal
19
20# following is now build into mount(8) now (see mount/Makefile)
21# we only dive into those subdirs for make obj/clean - some arch's floppies
22# compile individual mount_* and hence need the obj dirs to allow shared
23# source tree
24.if make(obj) || make(clean) || make(distclean) || make(cleandir)
25SUBDIR+= mount_ados mount_cd9660 mount_ext2fs mount_fdesc mount_filecore \
26	   mount_ffs mount_kernfs mount_lfs mount_msdos mount_nfs 	\
27	   mount_ntfs mount_null mount_overlay mount_procfs mount_umap	\
28	   mount_union
29.endif
30
31# IPv6
32SUBDIR+= ping6 rtsol
33
34# IPsec
35SUBDIR+= setkey
36
37.include <bsd.subdir.mk>
38