summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/boot/i386/kgzldr/Makefile2
-rw-r--r--sys/boot/i386/libi386/Makefile2
-rw-r--r--sys/boot/pc98/kgzldr/Makefile2
-rw-r--r--sys/boot/pc98/libpc98/Makefile2
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>
OpenPOWER on IntegriCloud