1 # $NetBSD: Makefile,v 1.29 2009/03/10 14:56:30 yamt 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 SUBDIR+= tprof 50 .if (defined(NOTYET)) 51 SUBDIR+= unionfs 52 .endif 53 54 # Machine dependent section 55 .if ${MACHINE_ARCH} != "alpha" 56 SUBDIR+= exec_elf32 57 .endif 58 59 .if ${MACHINE_ARCH} == "alpha" || \ 60 ${MACHINE_ARCH} == "sparc64" || \ 61 ${MACHINE_ARCH} == "x86_64" 62 SUBDIR+= exec_elf64 63 .endif 64 65 .if ${MACHINE_ARCH} == "i386" || \ 66 ${MACHINE_ARCH} == "x86_64" 67 SUBDIR+= tprof_pmi 68 .endif 69 70 .if ${MACHINE_ARCH} == "x86_64" 71 SUBDIR+= azalia 72 SUBDIR+= compat_linux 73 SUBDIR+= compat_linux32 74 SUBDIR+= compat_netbsd32 75 SUBDIR+= drm 76 SUBDIR+= i915drm 77 .endif 78 79 .if ${MACHINE_ARCH} == "i386" 80 SUBDIR+= azalia 81 SUBDIR+= compat_freebsd 82 SUBDIR+= compat_ibcs2 83 SUBDIR+= compat_linux 84 SUBDIR+= compat_svr4 85 SUBDIR+= drm 86 SUBDIR+= exec_aout 87 SUBDIR+= i915drm 88 SUBDIR+= radeondrm 89 .endif 90 91 .include <bsd.own.mk> 92 93 # we need our device mapper for LVM 94 .if (${MKLVM} != "no") 95 SUBDIR+= dm 96 .endif 97 98 .include <bsd.subdir.mk> 99