32 lines
714 B
Makefile
32 lines
714 B
Makefile
# $NetBSD: archdirs.mk,v 1.4 2014/03/07 04:16:25 matt Exp $
|
|
|
|
# list of subdirs used per-platform
|
|
|
|
.if ${MACHINE} == "sparc64"
|
|
ARCHDIR_SUBDIR= sparc64/sparc
|
|
.endif
|
|
|
|
.if ${MACHINE} == "amd64"
|
|
ARCHDIR_SUBDIR= amd64/i386
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "armeb")
|
|
ARCHDIR_SUBDIR= arm/eabi
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "earm" || ${MACHINE_ARCH} == "earmeb")
|
|
ARCHDIR_SUBDIR= arm/oabi
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "earmhf" || ${MACHINE_ARCH} == "earmhfeb")
|
|
ARCHDIR_SUBDIR= arm/oabi arm/eabi
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el")
|
|
ARCHDIR_SUBDIR= mips64/64 mips64/o32
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "powerpc64"
|
|
ARCHDIR_SUBDIR= powerpc64/powerpc
|
|
.endif
|