* Makefile.common: Add rule to build assembler code.

(.SUFFIXES): Add .S.
This commit is contained in:
Corinna Vinschen 2013-06-18 09:45:16 +00:00
parent 0b527c249c
commit c381968842
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-06-18 Corinna Vinschen <corinna@vinschen.de>
* Makefile.common: Add rule to build assembler code.
(.SUFFIXES): Add .S.
2012-11-26 Christopher Faylor <me.cygwin2012@cgf.cx>
* Makefile.in (Makefile): Rely on 'configure' not 'configure.in'.

View File

@ -37,7 +37,7 @@ nostdlib:=-nostdlib
VPATH:=${srcdir}
.SUFFIXES:
.SUFFIXES: .c .cc .def .a .o .d .s .E
.SUFFIXES: .c .cc .def .S .a .o .d .s .E
%.o: %.cc
$(strip ${COMPILE.cc} -c -o $@ $<)
@ -50,3 +50,6 @@ VPATH:=${srcdir}
%.E: %.c
$(strip ${COMPILE.c} -E -dD -o $@ $<)
%.o: %.S
$(strip ${COMPILE.S} -c -o $@ $<)