1 # $NetBSD: archdirs.mk,v 1.3 2015/06/22 06:46:27 matt Exp $ 2 3 # list of subdirs used per-platform 4 5 .if ${MACHINE} == "amd64" 6 ARCHDIR_SUBDIR= x86/amd64-xen 7 .endif 8 9 .if ${MACHINE} == "i386" 10 ARCHDIR_SUBDIR= x86/i386-xen x86/i386pae-xen 11 .endif 12 13 .if ${MACHINE_ARCH} == "powerpc" 14 ARCHDIR_SUBDIR= powerpc/powerpc-4xx powerpc/powerpc-booke 15 .endif 16 17 .if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el" 18 ARCHDIR_SUBDIR= mips/mips-n32 19 .endif 20