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