Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/sgimips/stand/boot bootloader targets have changed, ...
details: https://anonhg.NetBSD.org/src/rev/20470993b599
branches: trunk
changeset: 555287:20470993b599
user: sekiya <sekiya%NetBSD.org@localhost>
date: Thu Nov 13 12:42:18 2003 +0000
description:
bootloader targets have changed, which confused the install rules.
diffstat:
sys/arch/sgimips/stand/boot/Makefile | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
diffs (53 lines):
diff -r 95c9a0711e14 -r 20470993b599 sys/arch/sgimips/stand/boot/Makefile
--- a/sys/arch/sgimips/stand/boot/Makefile Thu Nov 13 11:59:46 2003 +0000
+++ b/sys/arch/sgimips/stand/boot/Makefile Thu Nov 13 12:42:18 2003 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2003/11/13 08:01:17 sekiya Exp $
+# $NetBSD: Makefile,v 1.8 2003/11/13 12:42:18 sekiya Exp $
-PROG= boot
+PROG= aoutboot
# 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.
@@ -10,25 +10,25 @@
SRCS= start.S boot.c bootinfo.c conf.c devopen.c putchar.c getchar.c \
getopt.c disk.c
-${PROG}: ip2x${PROG} ip3x${PROG}
- ${ELF2ECOFF} ip2x${PROG} aout${PROG}
+${PROG}: ip2xboot ip3xboot
+ ${ELF2ECOFF} ip2xboot aoutboot
# XXX Temporary hack to install the ELF verision, too.
-FILES+= ip2x${PROG} ip3x${PROG}
-CLEANFILES+= ip2x${PROG} ip3x${PROG}
+FILES+= ip2xboot ip3xboot
+CLEANFILES+= ip2xboot ip3xboot
-CLEANFILES+= ${PROG}.map
+CLEANFILES+= boot.map
.include "../Makefile.booters"
-ip3x${PROG}: ${OBJS} ${LIBS}
- ${LD} -Map ${PROG}.map -x -Ttext ${LOAD_ADDRESS_IP32} ${LDBUG} \
- -e start -o ip3x${PROG} ${OBJS} ${LIBS}
- @${STRIP} -s ip3x${PROG}
- @${SIZE} ip3x${PROG}
+ip3xboot: ${OBJS} ${LIBS}
+ ${LD} -Map boot.map -x -Ttext ${LOAD_ADDRESS_IP32} ${LDBUG} \
+ -e start -o ip3xboot ${OBJS} ${LIBS}
+ @${STRIP} -s ip3xboot
+ @${SIZE} ip3xboot
-ip2x${PROG}: ${OBJS} ${LIBS}
- ${LD} -Map ${PROG}.map -x -Ttext ${LOAD_ADDRESS} ${LDBUG} \
- -e start -o ip2x${PROG} ${OBJS} ${LIBS}
- @${STRIP} -s ip2x${PROG}
- @${SIZE} ip2x${PROG}
+ip2xboot: ${OBJS} ${LIBS}
+ ${LD} -Map boot.map -x -Ttext ${LOAD_ADDRESS} ${LDBUG} \
+ -e start -o ip2xboot ${OBJS} ${LIBS}
+ @${STRIP} -s ip2xboot
+ @${SIZE} ip2xboot
Home |
Main Index |
Thread Index |
Old Index