xref: /freebsd/share/mk/bsd.endian.mk (revision 7431dfd4580e850375fe5478d92ec770344db098)
1# $FreeBSD$
2
3.if ${MACHINE_ARCH} == "amd64" || \
4    ${MACHINE_ARCH} == "i386" || \
5    (${MACHINE} == "arm" && ${MACHINE_ARCH:Marm*eb*} == "") || \
6    ${MACHINE_ARCH:Mmips*el} != ""
7TARGET_ENDIANNESS= 1234
8.elif ${MACHINE_ARCH} == "powerpc" || \
9    ${MACHINE_ARCH} == "powerpc64" || \
10    ${MACHINE_ARCH} == "sparc64" || \
11    (${MACHINE} == "arm" && ${MACHINE_ARCH:Marm*eb*} != "") || \
12    ${MACHINE_ARCH:Mmips*} != ""
13TARGET_ENDIANNESS= 4321
14.endif
15