diff options
author | obrien <obrien@FreeBSD.org> | 2003-06-07 17:42:26 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-06-07 17:42:26 +0000 |
commit | 1b5ff95b0965a9b9da8e42cd7460017b131c6c65 (patch) | |
tree | 8c9abcf904c0f3064313b1a7214a494eb7018d01 /sys/boot | |
parent | 140ab1fb5ab072bc026f6cac5880d828d74203a3 (diff) | |
download | FreeBSD-src-1b5ff95b0965a9b9da8e42cd7460017b131c6c65.zip FreeBSD-src-1b5ff95b0965a9b9da8e42cd7460017b131c6c65.tar.gz |
Add ${AFLAGS} to 'as' invocation.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/i386/kgzldr/Makefile | 2 | ||||
-rw-r--r-- | sys/boot/i386/libi386/Makefile | 2 | ||||
-rw-r--r-- | sys/boot/pc98/kgzldr/Makefile | 2 | ||||
-rw-r--r-- | sys/boot/pc98/libpc98/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/boot/i386/kgzldr/Makefile b/sys/boot/i386/kgzldr/Makefile index fff828b..6207f73 100644 --- a/sys/boot/i386/kgzldr/Makefile +++ b/sys/boot/i386/kgzldr/Makefile @@ -11,7 +11,7 @@ LDFLAGS=-nostdlib -static -r .for asm in start crt sio OBJS+= ${asm}.o ${asm}.o: ${asm}.s - as -o ${.TARGET} ${.ALLSRC:M*${asm}*} + ${AS} ${AFLAGS} -o ${.TARGET} ${.ALLSRC:M*${asm}*} .endfor CLEANFILES=kgzldr.o diff --git a/sys/boot/i386/libi386/Makefile b/sys/boot/i386/libi386/Makefile index 22ee1e5..aba477a 100644 --- a/sys/boot/i386/libi386/Makefile +++ b/sys/boot/i386/libi386/Makefile @@ -47,6 +47,6 @@ machine: OBJS+= pxetramp.o pxetramp.o: pxetramp.s - as -o ${.TARGET} ${.ALLSRC:M*pxetramp*} + ${AS} ${AFLAGS} -o ${.TARGET} ${.ALLSRC:M*pxetramp*} .include <bsd.lib.mk> diff --git a/sys/boot/pc98/kgzldr/Makefile b/sys/boot/pc98/kgzldr/Makefile index 9fed53d..66e725e 100644 --- a/sys/boot/pc98/kgzldr/Makefile +++ b/sys/boot/pc98/kgzldr/Makefile @@ -14,7 +14,7 @@ AFLAGS+=--defsym PC98=1 .for asm in start crt sio OBJS+= ${asm}.o ${asm}.o: ${asm}.s - as -o ${.TARGET} ${.ALLSRC:M*${asm}*} + ${AS} ${AFLAGS} -o ${.TARGET} ${.ALLSRC:M*${asm}*} .endfor CLEANFILES=kgzldr.o diff --git a/sys/boot/pc98/libpc98/Makefile b/sys/boot/pc98/libpc98/Makefile index be420a4..5fe3f56 100644 --- a/sys/boot/pc98/libpc98/Makefile +++ b/sys/boot/pc98/libpc98/Makefile @@ -49,6 +49,6 @@ machine: OBJS+= pxetramp.o pxetramp.o: pxetramp.s - as -o ${.TARGET} ${.ALLSRC:M*pxetramp*} + ${AS} ${AFLAGS} -o ${.TARGET} ${.ALLSRC:M*pxetramp*} .include <bsd.lib.mk> |