From 86782cf25eb121d593b2fe3c35ad56e940809563 Mon Sep 17 00:00:00 2001 From: hartmann Date: Thu, 18 Mar 2004 15:20:32 +0000 Subject: [PATCH] New make output target. git-svn-id: https://svn.dealii.org/trunk@8823 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/tests/Makefile b/tests/Makefile index 880a152d82..564f4baf61 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -58,6 +58,27 @@ build-deal.II: abort.o cd deal.II ; $(MAKE) exe +# compilation and execution of tests only, no comparison with +# reference values + +output: output-base output-lac output-fe output-deal.II output-bits + +output-base: abort.o + cd base ; $(MAKE) output + +output-lac: abort.o + cd lac ; $(MAKE) output + +output-fe: abort.o + cd fe ; $(MAKE) output + +output-bits: abort.o + cd bits ; $(MAKE) output + +output-deal.II: abort.o + cd deal.II ; $(MAKE) output + + # collect all header files, and for each try to do the following: # generate a file tmp.cc that contains nothing but "#include " # with this particular header file. then try to compile it. this -- 2.39.5