mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
r195668 | gonzo | 2009-07-13 17:01:12 -0600 (Mon, 13 Jul 2009) | 3 lines
- Get rid of ugly TARGET_CPU_DEFAULT default. 16 is MASK_DSP
and was set there due to my ignroance.
20 lines
386 B
Makefile
20 lines
386 B
Makefile
# $FreeBSD$
|
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
|
|
|
.if ${TARGET_ARCH} == "amd64"
|
|
GCC_CPU= i386
|
|
.elif ${TARGET_ARCH} == "powerpc"
|
|
GCC_CPU= rs6000
|
|
.elif ${TARGET_ARCH} == "sparc64"
|
|
GCC_CPU= sparc
|
|
.else
|
|
GCC_CPU= ${TARGET_ARCH}
|
|
.endif
|
|
|
|
.if ${TARGET_ARCH} == "ia64"
|
|
TARGET_CPU_DEFAULT= MASK_GNU_AS|MASK_GNU_LD
|
|
.endif
|
|
.if ${TARGET_ARCH} == "sparc64"
|
|
TARGET_CPU_DEFAULT= TARGET_CPU_ultrasparc
|
|
.endif
|