1 1.1 christos # $NetBSD: Makefile,v 1.1 2018/12/31 13:35:16 christos Exp $ 2 1.1 christos 3 1.1 christos .include <bsd.hostinit.mk> 4 1.1 christos 5 1.1 christos HOSTPROGNAME= ${_TOOL_PREFIX}arm-elf2aout 6 1.1 christos HOST_SRCDIR= usr.bin/elf2aout 7 1.1 christos HOST_CPPFLAGS= -I${.CURDIR} 8 1.1 christos 9 1.1 christos .include <bsd.endian.mk> 10 1.1 christos 11 1.1 christos .if ${TARGET_ENDIANNESS} == "1234" 12 1.1 christos CPPFLAGS+= -DTARGET_BYTE_ORDER=LITTLE_ENDIAN 13 1.1 christos .elif ${TARGET_ENDIANNESS} == "4321" 14 1.1 christos CPPFLAGS+= -DTARGET_BYTE_ORDER=BIG_ENDIAN 15 1.1 christos .endif 16 1.1 christos 17 1.1 christos .include "${.CURDIR}/../Makefile.host" 18