]> sourceware.org Git - newlib-cygwin.git/commitdiff
* Makefile.common: Add rule to build assembler code.
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 18 Jun 2013 09:45:16 +0000 (09:45 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 18 Jun 2013 09:45:16 +0000 (09:45 +0000)
(.SUFFIXES): Add .S.

winsup/ChangeLog
winsup/Makefile.common

index 8d03742d66ea72fce7abcf860bba36339b7d3e41..826128805b01069a36fb67557dae0da632e8ac62 100644 (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'.
index 8b0c1fd217d881fa361ee25ffca79c14afe3ec0e..c71845c474e315d2f322cf077d882ede9e9c019f 100644 (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 $@ $<)
This page took 0.035915 seconds and 5 git commands to generate.