mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
13 lines
340 B
Makefile
13 lines
340 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || \
|
|
${MACHINE_ARCH} == "i386" || \
|
|
${MACHINE_ARCH} == "ia64" || \
|
|
(${MACHINE_ARCH} == "arm" && !defined(ARM_BIG_ENDIAN))
|
|
TARGET_ENDIANNESS= 1234
|
|
.elif ${MACHINE_ARCH} == "powerpc" || \
|
|
${MACHINE_ARCH} == "sparc64" || \
|
|
${MACHINE_ARCH} == "arm"
|
|
TARGET_ENDIANNESS= 4321
|
|
.endif
|