From 76104fcc06792552b50674b5a7f40b46c5e8e6e0 Mon Sep 17 00:00:00 2001 From: guido Date: Tue, 26 Apr 2005 07:43:55 +0000 Subject: [PATCH] fix order of libraries git-svn-id: https://svn.dealii.org/trunk@10579 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/doxygen/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.5