Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/ChangeLog5
-rw-r--r--winsup/Makefile.common5
2 files changed, 9 insertions, 1 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog
index 8d03742d6..826128805 100644
--- a/winsup/ChangeLog
+++ b/winsup/ChangeLog
@@ -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'.
diff --git a/winsup/Makefile.common b/winsup/Makefile.common
index 8b0c1fd21..c71845c47 100644
--- a/winsup/Makefile.common
+++ b/winsup/Makefile.common
@@ -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 $@ $<)