mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 00:24:52 -04:00
20 lines
443 B
Makefile
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
|