1 # $NetBSD: Makefile,v 1.33 2009/10/02 18:50:12 elad 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+= secmodel_bsd44 45 SUBDIR+= secmodel_overlay 46 SUBDIR+= securelevel 47 SUBDIR+= smbfs 48 SUBDIR+= sysvbfs 49 SUBDIR+= suser 50 SUBDIR+= tmpfs 51 SUBDIR+= udf 52 SUBDIR+= umap 53 SUBDIR+= union 54 SUBDIR+= vnd 55 SUBDIR+= tprof 56 .if (defined(NOTYET)) 57 SUBDIR+= unionfs 58 .endif 59 60 # Machine dependent section 61 .if ${MACHINE_ARCH} != "alpha" 62 SUBDIR+= exec_elf32 63 .endif 64 65 .if ${MACHINE_ARCH} == "alpha" || \ 66 ${MACHINE_ARCH} == "sparc64" || \ 67 ${MACHINE_ARCH} == "x86_64" 68 SUBDIR+= exec_elf64 69 .endif 70 71 .if ${MACHINE_ARCH} == "i386" || \ 72 ${MACHINE_ARCH} == "x86_64" 73 SUBDIR+= tprof_pmi 74 .endif 75 76 .if ${MACHINE_ARCH} == "x86_64" 77 SUBDIR+= azalia 78 SUBDIR+= compat_linux 79 SUBDIR+= compat_linux32 80 SUBDIR+= compat_netbsd32 81 SUBDIR+= drm 82 SUBDIR+= i915drm 83 .endif 84 85 .if ${MACHINE_ARCH} == "i386" 86 SUBDIR+= azalia 87 SUBDIR+= compat_freebsd 88 SUBDIR+= compat_ibcs2 89 SUBDIR+= compat_linux 90 SUBDIR+= compat_svr4 91 SUBDIR+= drm 92 SUBDIR+= exec_aout 93 SUBDIR+= i915drm 94 SUBDIR+= radeondrm 95 SUBDIR+= viadrm 96 .endif 97 98 .include <bsd.own.mk> 99 100 # we need our device mapper for LVM 101 .if (${MKLVM} != "no") 102 SUBDIR+= dm 103 .endif 104 105 .include <bsd.subdir.mk> 106