From 8a5db7955925492878ab06a16211cbbf4603753c Mon Sep 17 00:00:00 2001 From: John Criswell Date: Tue, 1 Jul 2003 15:02:59 +0000 Subject: [PATCH] The Makefile now adds autoconf information to the compiler and linker flag variables instead of overwriting those variables. This makes it more flexible and keeps some of the test Makefiles from breaking. llvm-svn: 7025 --- Makefile.config.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.config.in b/Makefile.config.in index 7c85e10c0b5..9480219db8e 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -26,14 +26,14 @@ CC := @CC@ # # Compilation flags for the C and C++ compilers. # -CPPFLAGS=@DEFS@ -CCFLAGS=@DEFS@ -LDFLAGS=@LDFLAGS@ +CPPFLAGS+=@DEFS@ +CCFLAGS+=@DEFS@ +LDFLAGS+=@LDFLAGS@ # # Removed since it prevents the tests from working properly. # -#LIBS=@LIBS@ +#LIBS+=@LIBS@ # # Libraries needed by tools