diff options
author | Christopher Faylor <me@cgf.cx> | 2008-09-12 22:32:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-09-12 22:32:07 +0000 |
commit | 175742d8c818ff31b06174494a77b30e5008eb83 (patch) | |
tree | dfbf349b29de835555f6ded1db161ff2e776617c /winsup/cygwin/Makefile.in | |
parent | 7df9b8ba8e832a14084b60c3daa035bcba5c5a8d (diff) | |
download | newlib-175742d8c818ff31b06174494a77b30e5008eb83.zip newlib-175742d8c818ff31b06174494a77b30e5008eb83.tar.gz newlib-175742d8c818ff31b06174494a77b30e5008eb83.tar.bz2 |
* Makefile.in: Add -c option which is now removed from COMPILE_C*.
* cygwin.din (cfmakeraw): Export.
* termios.cc (cfmakeraw): Implement.
* include/sys/termios.h (cfmakeraw): Declare.
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index e9b9662..d6f6bb1 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -451,7 +451,7 @@ lib%.a: %.o winver_stamp: mkvers.sh include/cygwin/version.h winver.rc $(DLL_OFILES) @echo "Making version.o and winver.o";\ $(SHELL) ${word 1,$^} ${word 2,$^} ${word 3,$^} $(WINDRES) && \ - $(COMPILE_CXX) -o version.o version.cc && \ + $(COMPILE_CXX) -c -o version.o version.cc && \ touch $@ Makefile: cygwin.din @@ -460,7 +460,7 @@ $(DEF_FILE): gendef cygwin.din $(srcdir)/tlsoffsets.h $^ $@ sigfe.s $(srcdir)/tlsoffsets.h: gentls_offsets cygtls.h - $^ $@ $(COMPILE_CXX) + $^ $@ $(COMPILE_CXX) -c sigfe.s: $(DEF_FILE) @[ -s $@ ] || \ |