From: Wolfgang Bangerth Date: Mon, 26 Mar 2001 07:43:50 +0000 (+0000) Subject: Use LDFLAGS to link, as in the other directories. X-Git-Tag: v8.0.0~19496 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=105f329f4a9c275719d37a32aaabf85091e4a34b;p=dealii.git Use LDFLAGS to link, as in the other directories. git-svn-id: https://svn.dealii.org/trunk@4284 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/Makefile.in b/tests/fe/Makefile.in index b5c1be1ebb..4eeb6576bd 100644 --- a/tests/fe/Makefile.in +++ b/tests/fe/Makefile.in @@ -60,10 +60,10 @@ endif %.go : %.cc Makefile @echo =====debug========= $< - @$(CXX) $(flags) -c $< -o $@ + @$(CXX) $(LDFLAGS) -g -c $< -o $@ %.o : %.cc Makefile @echo =====optimized===== $< - @$(CXX) $(flags) -c $< -o $@ + @$(CXX) $(LDFLAGS) -g -c $< -o $@ all: check @@ -91,7 +91,7 @@ endif fe_data_test.testcase: $(fe_data_test-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -105,7 +105,7 @@ endif shapes.testcase: $(shapes-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -119,7 +119,7 @@ endif derivatives.testcase: $(derivatives-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -133,7 +133,7 @@ endif embedding: $(embedding-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -146,7 +146,7 @@ interpolation-o-files = $(interpolation-cc-files:.cc=.o) endif interpolation: $(interpolation-o-files) $(libraries) - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -160,7 +160,7 @@ endif mapping.testcase: $(mapping-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -174,7 +174,7 @@ endif internals: $(internals-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ @@ -188,7 +188,7 @@ endif performance: $(performance-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(flags) -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ ############################################################ # Continue with other targets if needed