aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2023-05-13 15:15:49 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2023-05-13 15:15:49 +0000
commitda1ef2d6193036518d483a608f4b6ac753b78b96 (patch)
tree46d7b7c3aa67567914b2a7a75dbba56cee6ea0e2 /Makefile
parentf2b3bf5c4d4a391648e5b2740e81bccb85752ae5 (diff)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 0b2438a0cfc0..4658a75986f9 100644
--- a/Makefile
+++ b/Makefile
@@ -530,14 +530,10 @@ worlds: .PHONY
# powerpcspe excluded from main list until clang fixed
EXTRA_ARCHES_powerpc= powerpcspe
.endif
-TARGETS?=amd64 arm arm64 i386 powerpc riscv
+TARGETS?= ${TARGET_MACHINE_LIST}
_UNIVERSE_TARGETS= ${TARGETS}
-TARGET_ARCHES_arm?= armv6 armv7
-TARGET_ARCHES_arm64?= aarch64
-TARGET_ARCHES_powerpc?= powerpc powerpc64 powerpc64le ${EXTRA_ARCHES_powerpc}
-TARGET_ARCHES_riscv?= riscv64
.for target in ${TARGETS}
-TARGET_ARCHES_${target}?= ${target}
+TARGET_ARCHES_${target}= ${MACHINE_ARCH_LIST_${target}}
.endfor
.if defined(USE_GCC_TOOLCHAINS)