Revert to using as(1) to compile plain assembler source files.
All .s files that need cpp(1) processing (see gcc(1) manpage's DESCRIPTION section) have been repo-copied to .S files. This is mostly to bring bsd.lib.mk in agreement with sys.mk. Desired by: obrien
This commit is contained in:
parent
074981f0b9
commit
dc7e39e87b
@ -70,15 +70,8 @@ PICFLAG=-fpic
|
||||
.m.So:
|
||||
${OBJC} ${PICFLAG} -DPIC ${OBJCFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.s.o .asm.o:
|
||||
${CC} -x assembler-with-cpp ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.s.po .asm.po:
|
||||
${CC} -x assembler-with-cpp -DPROF ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.s.So .asm.So:
|
||||
${CC} -x assembler-with-cpp ${PICFLAG} -DPIC ${CFLAGS} \
|
||||
-c ${.IMPSRC} -o ${.TARGET}
|
||||
.s.po .asm.po .s.So .asm.So:
|
||||
${AS} ${AFLAGS} -o ${.TARGET} ${.IMPSRC}
|
||||
|
||||
.S.po:
|
||||
${CC} -DPROF ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
Loading…
Reference in New Issue
Block a user