NetBSD/share/mk/bsd.endian.mk

22 lines
606 B
Makefile
Raw Normal View History

2002-05-31 01:55:14 +04:00
# $NetBSD: bsd.endian.mk,v 1.2 2002/05/30 21:55:14 itojun Exp $
.include <bsd.init.mk>
2002-05-31 01:55:14 +04:00
# find out endianness of target and set proper flag for pwd_mkdb and such,
# so that it creates database in same endianness.
.if exists(${DESTDIR}/usr/include/sys/endian.h)
TARGET_ENDIANNESS!= \
printf '\#include <sys/endian.h>\n_BYTE_ORDER\n' | \
${CC} -I${DESTDIR}/usr/include -E - | tail -1 | awk '{print $$1}'
.else
TARGET_ENDIANNESS=
.endif
#.if ${TARGET_ENDIANNESS} == "1234"
#TARGET_ENDIANNESS= little
#.elif ${TARGET_ENDIANNESS} == "4321"
#TARGET_ENDIANNESS= big
#.else
#TARGET_ENDIANNESS= unknown
#.endif