From: wolf Date: Tue, 23 May 2000 17:25:28 +0000 (+0000) Subject: . X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec19323479f49a090a28b85b0df0ba6751931072;p=dealii-svn.git . git-svn-id: https://svn.dealii.org/trunk@2929 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/Makefile.in b/tests/deal.II/Makefile.in index 167c34ce06..e693b09cf3 100644 --- a/tests/deal.II/Makefile.in +++ b/tests/deal.II/Makefile.in @@ -67,7 +67,8 @@ endif all: grid_generator.check grid_test.check dof_test.check \ fe_tables.check gradients.check \ - constraints.check mg.check mglocal.check wave-test-3.check second_derivatives.check + constraints.check mg.check mglocal.check wave-test-3.check \ + block_matrices.check second_derivatives.check exe: $(all:.check=.testcase) benchmark run: $(all:.check=.output) @@ -251,6 +252,23 @@ mg.testcase: $(mg-o-files) $(libraries) +############################################################ + + +block_matrices-cc-files = block_matrices.cc + +ifeq ($(debug-mode),on) +block_matrices-o-files = $(block_matrices-cc-files:.cc=.go) +else +block_matrices-o-files = $(block_matrices-cc-files:.cc=.o) +endif + +block_matrices.testcase: $(block_matrices-o-files) $(libraries) + @echo =====linking======= $< + @$(CXX) $(flags) -o $@ $^ + + + ############################################################ # Continue with other targets if needed ############################################################