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