From f4e1d5e731e527ecac64f85b6511614e3932f251 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Thu, 29 Mar 2001 23:08:41 +0000 Subject: [PATCH] don't compile with LDFLAGS, $(LIBS) added git-svn-id: https://svn.dealii.org/trunk@4341 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fe/Makefile.in | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/fe/Makefile.in b/tests/fe/Makefile.in index f7813b6d73..491e652f5d 100644 --- a/tests/fe/Makefile.in +++ b/tests/fe/Makefile.in @@ -60,10 +60,10 @@ endif %.go : %.cc Makefile @echo =====debug========= $< - @$(CXX) $(LDFLAGS) -g -c $< -o $@ + @$(CXX) $(flags) -g -c $< -o $@ %.o : %.cc Makefile @echo =====optimized===== $< - @$(CXX) $(LDFLAGS) -g -c $< -o $@ + @$(CXX) $(flags) -g -c $< -o $@ all: check @@ -91,7 +91,7 @@ endif fe_data_test.testcase: $(fe_data_test-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ @@ -105,7 +105,7 @@ endif shapes.testcase: $(shapes-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ @@ -119,7 +119,7 @@ endif derivatives.testcase: $(derivatives-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ @@ -160,7 +160,7 @@ endif mapping.testcase: $(mapping-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ @@ -174,7 +174,7 @@ endif mapping_c1.testcase: $(mapping_c1-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ @@ -188,7 +188,7 @@ endif internals: $(internals-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ @@ -202,7 +202,7 @@ endif performance: $(performance-o-files) $(libraries) @echo =====linking======= $< - @$(CXX) $(LDFLAGS) -g -o $@ $^ + @$(CXX) $(LDFLAGS) -g -o $@ $^ $(LIBS) ############################################################ # Continue with other targets if needed -- 2.39.5