diff options
author | Christopher Faylor <me@cgf.cx> | 2003-03-29 04:20:45 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-03-29 04:20:45 +0000 |
commit | 46c8214c77bdfcc1b5926ebed7a32810672e5146 (patch) | |
tree | cdb30244091e9de47d4c0c67efcbc6f424426904 /winsup/cygwin/Makefile.in | |
parent | b7f68d3e9d605cba6151e05c305ccfa827111286 (diff) | |
download | newlib-46c8214c77bdfcc1b5926ebed7a32810672e5146.zip newlib-46c8214c77bdfcc1b5926ebed7a32810672e5146.tar.gz newlib-46c8214c77bdfcc1b5926ebed7a32810672e5146.tar.bz2 |
* Makefile.in: Remove EXE_LDFLAGS. Fix fhandler_CFLAGS typo. Recognize .s
suffix.
* configure.in: Remove EXE_LDFLAGS.
* configure: Regenerate.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index e810dba..2695a73 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -52,7 +52,7 @@ malloc_CFLAGS:=-fomit-frame-pointer shared_CFLAGS:=-fomit-frame-pointer cygthread_CFLAGS:=-fomit-frame-pointer miscfuncs_CFLAGS:=-fomit-frame-pointer -fhandler_CFLAGS:=-fomit-frame_pointer +fhandler_CFLAGS:=-fomit-frame-pointer fhandler_clipboard_CFLAGS:=-fomit-frame-pointer fhandler_console_CFLAGS:=-fomit-frame-pointer fhandler_disk_file_CFLAGS:=-fomit-frame-pointer @@ -78,12 +78,9 @@ CC:=@CC@ CC_FOR_TARGET:=$(CC) CFLAGS=@CFLAGS@ override CFLAGS+=-MMD ${$(*F)_CFLAGS} -CXX:=@CXX@ +CXX=@CXX@ CXXFLAGS=@CXXFLAGS@ -# For linking mount, etc. crt0.o isn't accessable in a fresh build. -EXE_LDFLAGS:=@EXE_LDFLAGS@ - AR:=@AR@ AR_FLAGS:=qv RANLIB:=@RANLIB@ @@ -245,7 +242,7 @@ TARGET_LIBS:=$(LIB_NAME) $(SUBLIBS) $(GMON_START) $(LIBGMON_A) $(SUBLIBS) $(INST install install-libs install-headers -lgcc .SUFFIXES: -.SUFFIXES: .c .cc .def .a .o .d +.SUFFIXES: .c .cc .def .a .o .d .s all_host=@all_host@ install_host=@install_host@ |