1 # $NetBSD: Makefile,v 1.32 2009/09/27 12:46:39 jmcneill 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+= mqueue 29 SUBDIR+= msdos 30 SUBDIR+= nfs 31 SUBDIR+= nfsserver 32 SUBDIR+= nilfs 33 SUBDIR+= ntfs 34 SUBDIR+= null 35 SUBDIR+= overlay 36 SUBDIR+= portal 37 SUBDIR+= ppp_bsdcomp 38 SUBDIR+= ppp_deflate 39 SUBDIR+= procfs 40 SUBDIR+= ptyfs 41 SUBDIR+= puffs 42 SUBDIR+= putter 43 SUBDIR+= miniroot 44 SUBDIR+= smbfs 45 SUBDIR+= sysvbfs 46 SUBDIR+= tmpfs 47 SUBDIR+= udf 48 SUBDIR+= umap 49 SUBDIR+= union 50 SUBDIR+= vnd 51 SUBDIR+= tprof 52 .if (defined(NOTYET)) 53 SUBDIR+= unionfs 54 .endif 55 56 # Machine dependent section 57 .if ${MACHINE_ARCH} != "alpha" 58 SUBDIR+= exec_elf32 59 .endif 60 61 .if ${MACHINE_ARCH} == "alpha" || \ 62 ${MACHINE_ARCH} == "sparc64" || \ 63 ${MACHINE_ARCH} == "x86_64" 64 SUBDIR+= exec_elf64 65 .endif 66 67 .if ${MACHINE_ARCH} == "i386" || \ 68 ${MACHINE_ARCH} == "x86_64" 69 SUBDIR+= tprof_pmi 70 .endif 71 72 .if ${MACHINE_ARCH} == "x86_64" 73 SUBDIR+= azalia 74 SUBDIR+= compat_linux 75 SUBDIR+= compat_linux32 76 SUBDIR+= compat_netbsd32 77 SUBDIR+= drm 78 SUBDIR+= i915drm 79 .endif 80 81 .if ${MACHINE_ARCH} == "i386" 82 SUBDIR+= azalia 83 SUBDIR+= compat_freebsd 84 SUBDIR+= compat_ibcs2 85 SUBDIR+= compat_linux 86 SUBDIR+= compat_svr4 87 SUBDIR+= drm 88 SUBDIR+= exec_aout 89 SUBDIR+= i915drm 90 SUBDIR+= radeondrm 91 SUBDIR+= viadrm 92 .endif 93 94 .include <bsd.own.mk> 95 96 # we need our device mapper for LVM 97 .if (${MKLVM} != "no") 98 SUBDIR+= dm 99 .endif 100 101 .include <bsd.subdir.mk> 102