From 17e6cd43a64a5afd77663dab69ee0fb6fc37b274 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 23 May 2000 17:25:28 +0000 Subject: [PATCH] . git-svn-id: https://svn.dealii.org/trunk@2929 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/Makefile.in | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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 ############################################################ -- 2.39.5