1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Add ${AFLAGS} to 'as' invocation.

This commit is contained in:
David E. O'Brien 2003-06-07 17:42:26 +00:00
parent 0d7d990649
commit 9b8d527fef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115964
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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>

View File

@ -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

View File

@ -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>