Home | History | Annotate | Line # | Download | only in m68k-elf2aout
Makefile revision 1.1.40.1
      1  1.1.40.1  pgoyette #	$NetBSD: Makefile,v 1.1.40.1 2018/05/02 07:20:27 pgoyette Exp $
      2       1.1   tsutsui 
      3       1.1   tsutsui HOSTPROGNAME=	${_TOOL_PREFIX}m68k-elf2aout
      4       1.1   tsutsui HOST_SRCDIR=	usr.bin/elf2aout
      5       1.1   tsutsui HOST_CPPFLAGS=	-I${.CURDIR}
      6       1.1   tsutsui 
      7       1.1   tsutsui .include <bsd.endian.mk>
      8       1.1   tsutsui 
      9       1.1   tsutsui .if   ${TARGET_ENDIANNESS} == "1234"
     10       1.1   tsutsui CPPFLAGS+= -DTARGET_BYTE_ORDER=LITTLE_ENDIAN
     11       1.1   tsutsui .elif ${TARGET_ENDIANNESS} == "4321"
     12       1.1   tsutsui CPPFLAGS+= -DTARGET_BYTE_ORDER=BIG_ENDIAN
     13       1.1   tsutsui .endif
     14       1.1   tsutsui 
     15       1.1   tsutsui .include "${.CURDIR}/../Makefile.host"
     16