cd2ae2532f
Implement MACHINE_ARCH=mips64e[lb] to build N64 images. This replaces MACHINE_ARCH=mipse[lb] TARGET_ABI=n64. MACHINE_ARCH=mipsn32e[lb] has been added, but currently requires WITHOUT_CDDL due to atomic issues in libzfs. I've not investigated this much, but implemented this to preserve as much of the TARGET_ABI functionality that I could. Since its presence doesn't affect the working cases, I've kept it in for now. Added mips64e[lb] to make universe, so more kernels build. And I think this (finally) closes the curtain on the tbemd tree.
24 lines
616 B
Makefile
24 lines
616 B
Makefile
# $NetBSD: Makefile.inc,v 1.8 2002/02/04 00:18:32 thorpej Exp $
|
|
# $FreeBSD$
|
|
|
|
WARNS?= 0
|
|
|
|
.PATH: ${.CURDIR}/../common
|
|
|
|
# These assignments duplicate much of the functionality of
|
|
# MACHINE_CPUARCH, but there's no easy way to export make functions...
|
|
.if defined(TARGET_ARCH)
|
|
TARGET_CPUARCH= ${TARGET_ARCH:C/mips.*e[bl]/mips/:C/armeb/arm/}
|
|
.else
|
|
TARGET_CPUARCH= ${MACHINE_CPUARCH}
|
|
TARGET_ARCH= ${MACHINE_ARCH}
|
|
.endif
|
|
.if exists(${.CURDIR}/../arch/${TARGET_ARCH})
|
|
CFLAGS+= -I${.CURDIR}/../arch/${TARGET_ARCH}
|
|
.else
|
|
CFLAGS+= -I${.CURDIR}/../arch/${TARGET_CPUARCH}
|
|
.endif
|
|
CFLAGS+= -I${.CURDIR}/../common
|
|
|
|
OBJECT_FMT= ELF
|