Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amiga/stand/bootblock/boot Use ${NM} and ${SIZE} so...



details:   https://anonhg.NetBSD.org/src/rev/8a499a03ea2b
branches:  trunk
changeset: 504439:8a499a03ea2b
user:      mhitch <mhitch%NetBSD.org@localhost>
date:      Fri Mar 02 16:46:19 2001 +0000

description:
Use ${NM} and ${SIZE} so cross-compiling works.  The machine and m68k include
directories still need to be fixed.

diffstat:

 sys/arch/amiga/stand/bootblock/boot/Makefile |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (36 lines):

diff -r 55263010d09c -r 8a499a03ea2b sys/arch/amiga/stand/bootblock/boot/Makefile
--- a/sys/arch/amiga/stand/bootblock/boot/Makefile      Fri Mar 02 16:43:25 2001 +0000
+++ b/sys/arch/amiga/stand/bootblock/boot/Makefile      Fri Mar 02 16:46:19 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.21 2000/09/17 18:24:12 is Exp $
+#      $NetBSD: Makefile,v 1.22 2001/03/02 16:46:19 mhitch Exp $
 
 ### what we need:
 
@@ -57,20 +57,20 @@
 CLEANFILES += xxboot fdboot x.out f.out xxstart.o fdstart.o libboot.a
 
 xxboot: x.out
-       ${AOUT2BB} x.out $@ || nm -u x.out
+       ${AOUT2BB} x.out $@ || ${NM} -u x.out
 
 fdboot: f.out
-       ${AOUT2BB} f.out $@ || nm -u f.out
+       ${AOUT2BB} f.out $@ || ${NM} -u f.out
 
 x.out: xxstart.o libboot.a
        ${LD} ${LDFLAGS} -r -dc -e _start -o $@ $>
-       size $@
-       nm -u $@
+       ${SIZE} $@
+       ${NM} -u $@
 
 f.out: fdstart.o libboot.a
        ${LD} ${LDFLAGS} -r -dc -e _start -o $@ $>
-       size $@
-       nm -u $@
+       ${SIZE} $@
+       ${NM} -u $@
 
 xxstart.o: ${.CURDIR}/bbstart.s
        ${CC} ${CAFLAGS} ${COPTS} -x assembler-with-cpp \



Home | Main Index | Thread Index | Old Index