From: bangerth Date: Thu, 30 Oct 2008 13:42:07 +0000 (+0000) Subject: Make sure that the Trilinos and Petsc libs come after our own. Otherwise, linking... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f952aa0b7304146e7661eb669dafc3523e81ec90;p=dealii-svn.git Make sure that the Trilinos and Petsc libs come after our own. Otherwise, linking with static libs fails. git-svn-id: https://svn.dealii.org/trunk@17415 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 1f95b4fe17..f3b2000480 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -51,7 +51,7 @@ endif %/exe : %/obj.g.$(OBJEXT) @echo =====linking======= $@ @echo Linking > $*/status - @$(CXX) $(LDFLAGS) -o $@ $^ $(LIBS) + @$(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) ############################################################