1 # $NetBSD: Makefile,v 1.36 2009/12/05 20:11:18 pooka Exp $ 2 3 # For all platforms 4 5 SUBDIR= xldscripts 6 SUBDIR+= accf_dataready 7 SUBDIR+= accf_httpready 8 SUBDIR+= adosfs 9 SUBDIR+= aio 10 SUBDIR+= cd9660 11 SUBDIR+= coda 12 SUBDIR+= coda5 13 SUBDIR+= compat 14 SUBDIR+= compat_ossaudio 15 SUBDIR+= coredump 16 SUBDIR+= efs 17 SUBDIR+= ext2fs 18 SUBDIR+= exec_script 19 SUBDIR+= fdesc 20 SUBDIR+= ffs 21 SUBDIR+= filecore 22 SUBDIR+= fss 23 SUBDIR+= hfs 24 SUBDIR+= kernfs 25 SUBDIR+= ksem 26 SUBDIR+= layerfs 27 SUBDIR+= lfs 28 SUBDIR+= mfs 29 SUBDIR+= mqueue 30 SUBDIR+= msdos 31 SUBDIR+= nfs 32 SUBDIR+= nfsserver 33 SUBDIR+= nilfs 34 SUBDIR+= ntfs 35 SUBDIR+= null 36 SUBDIR+= overlay 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 # we need solaris and zfs modules for ZFS 106 .if (${MKZFS} != "no") 107 SUBDIR+= solaris 108 SUBDIR+= zfs 109 .endif 110 111 .include <bsd.subdir.mk> 112