From 11544eede02b63508ba762f9f3048f4f2ba3d924 Mon Sep 17 00:00:00 2001 From: guido Date: Mon, 17 Feb 2003 12:36:46 +0000 Subject: [PATCH] Double libraries fixed git-svn-id: https://svn.dealii.org/trunk@7121 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/Makefile.rules b/tests/Makefile.rules index a64b9301f0..e2aaafb56f 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -31,9 +31,13 @@ endif %.$(OBJEXT) : %.cc Makefile @echo =====optimized===== $< @$(CXX) $(CXXFLAGS.o) -c $< -o $@ + +###################################################################### +# Don't put $(libraries) into this line since it is already in $^ +###################################################################### %.exe : @echo =====linking======= $@ - @$(CXX) $(LDFLAGS) -o $@ $^ $(libraries) $(LIBS) + @$(CXX) $(LDFLAGS) -o $@ $^ $(LIBS) ############################################################ -- 2.39.5