Makefile revision 1.26
1# $NetBSD: Makefile,v 1.26 1996/03/16 10:29:36 leo Exp $ 2# @(#)Makefile 8.5 (Berkeley) 3/31/94 3 4# Not ported: XNSrouted enpload scsiformat startslip 5# Missing: icheck ncheck 6 7SUBDIR= badsect disklabel ccdconfig dmesg fastboot ifconfig init mknod \ 8 modload modunload mount mountd nfsd nfsiod nologin ping quotacheck \ 9 reboot route routed shutdown slattach swapon ttyflags umount 10 11# XXX Temporarely until all ports are able to use savecore (leo) 12.if (${MACHINE} == "atari") 13SUBDIR+= savecore 14.else 15SUBDIR+= savecore.old 16.endif 17 18# support for various file systems 19SUBDIR+= mount_ados 20SUBDIR+= mount_cd9660 21SUBDIR+= mount_fdesc 22SUBDIR+= mount_ffs newfs fsck fsdb dumpfs dump restore clri tunefs 23SUBDIR+= mount_kernfs 24SUBDIR+= mount_lfs newlfs dumplfs 25# mount_mfs -> newfs 26SUBDIR+= mount_msdos 27SUBDIR+= mount_nfs 28SUBDIR+= mount_null 29SUBDIR+= mount_portal 30SUBDIR+= mount_procfs 31SUBDIR+= mount_umap 32SUBDIR+= mount_union 33 34.if make(clean) || make(cleandir) 35SUBDIR+= bim edlabel fdisk 36.elif ${MACHINE} == "i386" 37SUBDIR+= fdisk 38.elif ${MACHINE} == "pc532" 39SUBDIR+= bim 40.elif ${MACHINE} == "sun3" 41SUBDIR+= edlabel 42.endif 43 44.include <bsd.subdir.mk> 45