netbsd/sys/modules/arch/archdirs.mk
2015-10-15 10:25:28 +02:00

20 lines
443 B
Makefile

# $NetBSD: archdirs.mk,v 1.3 2015/06/22 06:46:27 matt Exp $
# list of subdirs used per-platform
.if ${MACHINE} == "amd64"
ARCHDIR_SUBDIR= x86/amd64-xen
.endif
.if ${MACHINE} == "i386"
ARCHDIR_SUBDIR= x86/i386-xen x86/i386pae-xen
.endif
.if ${MACHINE_ARCH} == "powerpc"
ARCHDIR_SUBDIR= powerpc/powerpc-4xx powerpc/powerpc-booke
.endif
.if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el"
ARCHDIR_SUBDIR= mips/mips-n32
.endif