48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.19 2011/02/26 16:26:58 matt Exp $
|
|
|
|
|
|
# Don't strip the ECOFF'ed version on install -- strip gets confused by that,
|
|
# and it's already stripped since it's a copy of the stripped ELF one.
|
|
#
|
|
STRIPFLAG=
|
|
|
|
SRCS= start.S boot.c bootinfo.c conf.c devopen.c putchar.c getchar.c \
|
|
getopt.c disk.c arcbios_calls.S
|
|
|
|
PROG= aoutboot
|
|
${PROG}: ip2xboot ip3xboot
|
|
.if ${MACHINE_ARCH} == "mipseb"
|
|
${OBJCOPY} --impure -O ecoff-bigmips \
|
|
-R .pdr -R .mdebug.nabi32 -R .mdebug.abi32 \
|
|
-R .comment -R .ident \
|
|
ip2xboot ${.TARGET}
|
|
.else
|
|
touch ${.TARGET}
|
|
.endif
|
|
|
|
# XXX Temporary hack to install the ELF version, too.
|
|
FILES+= ip2xboot ip3xboot
|
|
CLEANFILES+= ip2xboot ip2xboot.elf ip3xboot ip3xboot.elf
|
|
|
|
CLEANFILES+= ip2xboot.map ip3xboot.map
|
|
|
|
.include "../Makefile.booters"
|
|
|
|
ip3xboot: ${OBJS} ${LIBS}
|
|
${_MKTARGET_LINK}
|
|
${LD} -Map ${.TARGET}.map -N -x -Ttext ${LOAD_ADDRESS_IP32} ${LDBUG} \
|
|
-m elf32btsmip -e start -o ${.TARGET}.elf ${OBJS} ${LIBS}
|
|
@${STRIP} -s ${.TARGET}.elf -o ${.TARGET}
|
|
@${SIZE} ${.TARGET}
|
|
|
|
ip2xboot: ${OBJS} ${LIBS}
|
|
${_MKTARGET_LINK}
|
|
${LD} -Map ${.TARGET}.map -N -x -Ttext ${LOAD_ADDRESS} ${LDBUG} \
|
|
-m elf32btsmip -e start -o ${.TARGET}.elf ${OBJS} ${LIBS}
|
|
@${STRIP} -s ${.TARGET}.elf -o ${.TARGET}
|
|
@${SIZE} ${.TARGET}
|
|
|
|
cleandir distclean: .WAIT cleanlibdir
|
|
cleanlibdir:
|
|
-rm -rf lib
|