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:
Diffstat (limited to 'winsup/Makefile.common')
-rw-r--r--winsup/Makefile.common5
1 files changed, 4 insertions, 1 deletions
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 $@ $<)