13 lines
343 B
Makefile
13 lines
343 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || \
|
|
${MACHINE_ARCH} == "i386" || \
|
|
${MACHINE_ARCH} == "ia64" || \
|
|
(${MACHINE_ARCH} == "arm" && !defined(TARGET_BIG_ENDIAN))
|
|
TARGET_ENDIANNESS= 1234
|
|
.elif ${MACHINE_ARCH} == "powerpc" || \
|
|
${MACHINE_ARCH} == "sparc64" || \
|
|
${MACHINE_ARCH} == "arm"
|
|
TARGET_ENDIANNESS= 4321
|
|
.endif
|