From: guido Date: Mon, 17 Feb 2003 12:36:46 +0000 (+0000) Subject: Double libraries fixed X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11544eede02b63508ba762f9f3048f4f2ba3d924;p=dealii-svn.git Double libraries fixed git-svn-id: https://svn.dealii.org/trunk@7121 0785d39b-7218-0410-832d-ea1e28bc413d --- 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) ############################################################