From: guido Date: Tue, 26 Apr 2005 07:43:55 +0000 (+0000) Subject: fix order of libraries X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76104fcc06792552b50674b5a7f40b46c5e8e6e0;p=dealii-svn.git fix order of libraries git-svn-id: https://svn.dealii.org/trunk@10579 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/doxygen/Makefile b/deal.II/examples/doxygen/Makefile index 38e5925f62..8d725fb8d9 100644 --- a/deal.II/examples/doxygen/Makefile +++ b/deal.II/examples/doxygen/Makefile @@ -26,11 +26,11 @@ all: product_matrix.exe block_matrix_array.exe # Specific targets ###################################################################### -block_matrix_array.exe: block_matrix_array.o $(lib-base.g) $(lib-lac.g) +block_matrix_array.exe: block_matrix_array.o $(lib-lac.g) $(lib-base.g) @echo =====linking====$(MT)== $< @$(CXX) $(CXXFLAGS.g) $(LDFLAGS) -o $@ $^ $(LIBS) -product_matrix.exe: product_matrix.o $(lib-base.g) $(lib-lac.g) +product_matrix.exe: product_matrix.o $(lib-lac.g) $(lib-base.g) @echo =====linking====$(MT)== $< @$(CXX) $(CXXFLAGS.g) $(LDFLAGS) -o $@ $^ $(LIBS)