From 1e31f0a6421f7d86b7006903c98aa6f51eced44b Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 7 Nov 2004 21:58:45 +0000 Subject: [PATCH] Use .S for assembly files instead of .s --- sys/arch/hp700/stand/xxboot/Makefile | 16 ++++++++-------- .../stand/xxboot/{milli_tiny.s => milli_tiny.S} | 2 +- sys/arch/hp700/stand/xxboot/{start.s => start.S} | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) rename sys/arch/hp700/stand/xxboot/{milli_tiny.s => milli_tiny.S} (98%) rename sys/arch/hp700/stand/xxboot/{start.s => start.S} (99%) diff --git a/sys/arch/hp700/stand/xxboot/Makefile b/sys/arch/hp700/stand/xxboot/Makefile index a17ea0b5e9c3..5fef45bcc76c 100644 --- a/sys/arch/hp700/stand/xxboot/Makefile +++ b/sys/arch/hp700/stand/xxboot/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2004/08/09 16:01:37 chs Exp $ +# $NetBSD: Makefile,v 1.3 2004/11/07 21:58:45 christos Exp $ PROG= xxboot -SRCS= start.s main.c readufs.c readufs_ffs.c readufs_lfs.c milli_tiny.s +SRCS= start.S main.c readufs.c readufs_ffs.c readufs_lfs.c milli_tiny.S CPPFLAGS+= -mpa-risc-1-0 -I${.CURDIR}/../../../.. -I. -D_STANDALONE # configuration for readufs module @@ -41,23 +41,23 @@ iplsum: iplsum.c ${HOST_CC} -o $@ ${.CURDIR}/iplsum.c CLEANFILES+= ${PROG}1 ${PROG}2 ${PROG}1.bin ${PROG}2.bin ${PROG}.bin iplsum -CLEANFILES+= ${SRCS:M*.c:S/.c$/.o.s/} +CLEANFILES+= ${SRCS:M*.c:S/.c$/.o.S/} .include # override default rules # Place code to data section. -.s.o: +.S.o: sed -e 's/\.code/.data/' \ -e 's/\.bss/.section .bss,"aw",@nobits/' \ -e 's/\.allow$$/.level 1.0/' -e 's/\.allow/.level/' \ - $< | ${AS} -o $@ + ${.IMPSRC} | ${AS} -o ${.TARGET} # Place code to data section, and make sure all address calculations # are relative to $global$. .c.o: - ${CC} ${CFLAGS} ${CPPFLAGS} -o $@.s -S $< - @grep -i 'ldil' $@.s | egrep -v "ldil L'-?[0-9]*," || exit 0; \ + ${CC} ${CFLAGS} ${CPPFLAGS} -o $@.S -S ${.IMPSRC} + @grep -i 'ldil' $@.S | egrep -v "ldil L'-?[0-9]*," || exit 0; \ echo 'found non-relocatable code' >&2; exit 1 - sed -e 's/\.text/.data/' $@.s | ${AS} -o $@ + sed -e 's/\.text/.data/' $@.S | ${AS} -o ${.TARGET} diff --git a/sys/arch/hp700/stand/xxboot/milli_tiny.s b/sys/arch/hp700/stand/xxboot/milli_tiny.S similarity index 98% rename from sys/arch/hp700/stand/xxboot/milli_tiny.s rename to sys/arch/hp700/stand/xxboot/milli_tiny.S index 576868c0c7ad..ac5a486f6271 100644 --- a/sys/arch/hp700/stand/xxboot/milli_tiny.s +++ b/sys/arch/hp700/stand/xxboot/milli_tiny.S @@ -1,4 +1,4 @@ -; $NetBSD: milli_tiny.s,v 1.1 2004/06/15 03:10:30 itohy Exp $ +; $NetBSD: milli_tiny.S,v 1.1 2004/11/07 21:58:45 christos Exp $ ; Copyright (c) 2003 ITOH Yasufumi. ; All rights reserved. diff --git a/sys/arch/hp700/stand/xxboot/start.s b/sys/arch/hp700/stand/xxboot/start.S similarity index 99% rename from sys/arch/hp700/stand/xxboot/start.s rename to sys/arch/hp700/stand/xxboot/start.S index dd28d29641a0..ad554281ee63 100644 --- a/sys/arch/hp700/stand/xxboot/start.s +++ b/sys/arch/hp700/stand/xxboot/start.S @@ -1,4 +1,4 @@ -; $NetBSD: start.s,v 1.1 2004/06/15 03:10:30 itohy Exp $ +; $NetBSD: start.S,v 1.1 2004/11/07 21:58:45 christos Exp $ ; Copyright (c) 2003 ITOH Yasufumi. ; All rights reserved.