diff options
author | rupp <rupp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-01 05:38:50 +0000 |
---|---|---|
committer | rupp <rupp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-01 05:38:50 +0000 |
commit | b28359087f63203a8a63b63ad627d4484e5d3c61 (patch) | |
tree | 3e44695fd13b2974c16819a6201917280773d1bc /libiberty/Makefile.in | |
parent | fcda639fe62821e7e265564ac48ef0dad27482e3 (diff) | |
download | gcc-b28359087f63203a8a63b63ad627d4484e5d3c61.tar.gz |
2002-06-30 Douglas Rupp <rupp@gnat.com>
* configure.in (OUTPUT_OPTION,NO_MINUS_C_MINUS_O): Configure.
* Makefile.in (OUTPUT_OPTION): Use.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55127 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 60189725e16..5a25987d58b 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -52,6 +52,9 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs +# Some compilers can't handle cc -c blah.c -o foo/blah.o. +OUTPUT_OPTION = @OUTPUT_OPTION@ + AR = @AR@ AR_FLAGS = rc @@ -117,7 +120,7 @@ COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiber if [ x"$(PICFLAG)" != x ]; then \ $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \ else true; fi - $(COMPILE.c) $< + $(COMPILE.c) $< $(OUTPUT_OPTION) # NOTE: If you add new files to the library, add them to this list # (alphabetical), and add them to REQUIRED_OFILES, or |