Makefile revision 1.40
1# $NetBSD: Makefile,v 1.40 2010/04/09 13:49:12 ahoka Exp $ 2 3.include <bsd.own.mk> 4 5# For all platforms 6 7SUBDIR= accf_dataready 8SUBDIR+= accf_httpready 9SUBDIR+= adosfs 10SUBDIR+= aio 11SUBDIR+= bpf 12SUBDIR+= cd9660 13SUBDIR+= coda 14SUBDIR+= coda5 15SUBDIR+= compat 16SUBDIR+= compat_ossaudio 17SUBDIR+= coredump 18SUBDIR+= efs 19SUBDIR+= ext2fs 20SUBDIR+= exec_script 21SUBDIR+= fdesc 22SUBDIR+= ffs 23SUBDIR+= filecore 24SUBDIR+= fss 25SUBDIR+= hfs 26SUBDIR+= kernfs 27SUBDIR+= ksem 28SUBDIR+= layerfs 29SUBDIR+= lfs 30SUBDIR+= mfs 31SUBDIR+= mqueue 32SUBDIR+= msdos 33SUBDIR+= nfs 34SUBDIR+= nfsserver 35SUBDIR+= nilfs 36SUBDIR+= ntfs 37SUBDIR+= null 38SUBDIR+= overlay 39SUBDIR+= ppp_bsdcomp 40SUBDIR+= ppp_deflate 41SUBDIR+= procfs 42SUBDIR+= ptyfs 43SUBDIR+= puffs 44SUBDIR+= putter 45SUBDIR+= miniroot 46SUBDIR+= secmodel_bsd44 47SUBDIR+= secmodel_overlay 48SUBDIR+= securelevel 49SUBDIR+= smbfs 50SUBDIR+= sysvbfs 51SUBDIR+= suser 52SUBDIR+= tmpfs 53SUBDIR+= udf 54SUBDIR+= umap 55SUBDIR+= union 56SUBDIR+= vnd 57SUBDIR+= tprof 58.if (defined(NOTYET)) 59SUBDIR+= unionfs 60.endif 61.if ${MKBINUTILS} != "no" 62SUBDIR+= xldscripts 63.endif 64 65# Machine dependent section 66.if ${MACHINE_ARCH} != "alpha" 67SUBDIR+= exec_elf32 68.endif 69 70.if ${MACHINE_ARCH} == "alpha" || \ 71 ${MACHINE_ARCH} == "sparc64" || \ 72 ${MACHINE_ARCH} == "x86_64" 73SUBDIR+= exec_elf64 74.endif 75 76.if ${MACHINE_ARCH} == "i386" || \ 77 ${MACHINE_ARCH} == "x86_64" 78SUBDIR+= tprof_pmi 79.endif 80 81.if ${MACHINE_ARCH} == "x86_64" 82SUBDIR+= azalia 83SUBDIR+= compat_linux 84SUBDIR+= compat_linux32 85SUBDIR+= compat_netbsd32 86SUBDIR+= drm 87SUBDIR+= i915drm 88SUBDIR+= pad 89.endif 90 91.if ${MACHINE_ARCH} == "i386" 92SUBDIR+= azalia 93SUBDIR+= compat_freebsd 94SUBDIR+= compat_ibcs2 95SUBDIR+= compat_linux 96SUBDIR+= compat_svr4 97SUBDIR+= drm 98SUBDIR+= exec_aout 99SUBDIR+= i915drm 100SUBDIR+= radeondrm 101SUBDIR+= viadrm 102SUBDIR+= pad 103.endif 104 105.include <bsd.own.mk> 106 107# we need our device mapper for LVM 108.if (${MKLVM} != "no") 109SUBDIR+= dm 110.endif 111 112.if (${MKDTRACE} != "no") 113SUBDIR+= dtrace 114.endif 115 116# we need solaris for the dtrace and zfs modules 117.if (${MKDTRACE} != "no" || ${MKZFS} != "no") 118SUBDIR+= solaris 119.endif 120 121.if (${MKZFS} != "no") 122SUBDIR+= zfs 123.endif 124 125.include <bsd.subdir.mk> 126