mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
14 lines
446 B
Makefile
14 lines
446 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || \
|
|
${MACHINE_ARCH} == "i386" || \
|
|
${MACHINE_ARCH} == "ia64" || \
|
|
(${MACHINE_ARCH} == "arm" && !defined(TARGET_BIG_ENDIAN)) || \
|
|
(${MACHINE_ARCH} == "mips" && !defined(TARGET_BIG_ENDIAN))
|
|
TARGET_ENDIANNESS= 1234
|
|
.elif ${MACHINE_ARCH} == "powerpc" || \
|
|
${MACHINE_ARCH} == "sparc64" || \
|
|
${MACHINE_ARCH} == "arm" || \
|
|
${MACHINE_ARCH} == "mips"
|
|
TARGET_ENDIANNESS= 4321
|
|
.endif
|