1 # $NetBSD: Makefile,v 1.27 2009/02/14 13:56:41 abs Exp $ 2 3 # For all platforms 4 5 SUBDIR= accf_dataready 6 SUBDIR+= accf_httpready 7 SUBDIR+= adosfs 8 SUBDIR+= aio 9 SUBDIR+= cd9660 10 SUBDIR+= coda 11 SUBDIR+= coda5 12 SUBDIR+= compat 13 SUBDIR+= compat_ossaudio 14 SUBDIR+= coredump 15 SUBDIR+= efs 16 SUBDIR+= ext2fs 17 SUBDIR+= exec_script 18 SUBDIR+= fdesc 19 SUBDIR+= ffs 20 SUBDIR+= filecore 21 SUBDIR+= fss 22 SUBDIR+= hfs 23 SUBDIR+= kernfs 24 SUBDIR+= ksem 25 SUBDIR+= layerfs 26 SUBDIR+= lfs 27 SUBDIR+= mfs 28 SUBDIR+= msdos 29 SUBDIR+= nfs 30 SUBDIR+= nfsserver 31 SUBDIR+= ntfs 32 SUBDIR+= null 33 SUBDIR+= overlay 34 SUBDIR+= portal 35 SUBDIR+= ppp_bsdcomp 36 SUBDIR+= ppp_deflate 37 SUBDIR+= procfs 38 SUBDIR+= ptyfs 39 SUBDIR+= puffs 40 SUBDIR+= putter 41 SUBDIR+= miniroot 42 SUBDIR+= smbfs 43 SUBDIR+= sysvbfs 44 SUBDIR+= tmpfs 45 SUBDIR+= udf 46 SUBDIR+= umap 47 SUBDIR+= union 48 SUBDIR+= vnd 49 .if (defined(NOTYET)) 50 SUBDIR+= unionfs 51 .endif 52 53 # Machine dependent section 54 .if ${MACHINE_ARCH} != "alpha" 55 SUBDIR+= exec_elf32 56 .endif 57 58 .if ${MACHINE_ARCH} == "alpha" || \ 59 ${MACHINE_ARCH} == "sparc64" || \ 60 ${MACHINE_ARCH} == "x86_64" 61 SUBDIR+= exec_elf64 62 .endif 63 64 .if ${MACHINE_ARCH} == "x86_64" 65 SUBDIR+= azalia 66 SUBDIR+= compat_linux 67 SUBDIR+= compat_linux32 68 SUBDIR+= compat_netbsd32 69 SUBDIR+= drm 70 SUBDIR+= i915drm 71 .endif 72 73 .if ${MACHINE_ARCH} == "i386" 74 SUBDIR+= azalia 75 SUBDIR+= compat_freebsd 76 SUBDIR+= compat_ibcs2 77 SUBDIR+= compat_linux 78 SUBDIR+= compat_svr4 79 SUBDIR+= drm 80 SUBDIR+= exec_aout 81 SUBDIR+= i915drm 82 SUBDIR+= radeondrm 83 .endif 84 85 .include <bsd.own.mk> 86 87 # we need our device mapper for LVM 88 .if (${MKLVM} != "no") 89 SUBDIR+= dm 90 .endif 91 92 .include <bsd.subdir.mk> 93