# We only build binaries from here where the pcc host and target architectures
# will be the same. For a cross-compiler, use the tools/pcc build.
#
if ${TARGET_ENDIANNESS} == "1234"
CPPFLAGS+= -DHOST_LITTLE_ENDIAN
CPPFLAGS+= -DTARGET_LITTLE_ENDIAN
elif ${TARGET_ENDIANNESS} == "4321"
CPPFLAGS+= -DHOST_BIG_ENDIAN
CPPFLAGS+= -DTARGET_BIG_ENDIAN
else
ERROR!= echo "ERROR: Unknown TARGET_ENDIANNESS" >&2;echo
endif
# top-level Makefile.inc
include "../../../Makefile.inc"