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:
parent
0d7d990649
commit
9b8d527fef
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115964
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user