1 # $NetBSD: archdirs.mk,v 1.5 2020/06/27 06:50:00 rin 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/i386pae-xen 11 .endif 12 13 .if ${MACHINE_ARCH} == "powerpc" 14 ARCHDIR_SUBDIR= powerpc/powerpc-ibm4xx powerpc/powerpc-booke 15 .endif 16 17 .if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el" 18 ARCHDIR_SUBDIR= mips/mips-n32 19 .endif 20