From 9db871095412bc9812845286026b8485b9b3c2d5 Mon Sep 17 00:00:00 2001 From: hartmann Date: Mon, 13 Jun 2005 10:09:46 +0000 Subject: [PATCH] Rename exe target to build for consistency. git-svn-id: https://svn.dealii.org/trunk@10856 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile | 12 ++++++------ tests/Makefile.rules | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 30b3553569..17df0ef9ba 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -46,22 +46,22 @@ report+mail: build: build-base build-lac build-fe build-deal.II build-multigrid build-bits build-base: abort.o - cd base ; $(MAKE) exe + cd base ; $(MAKE) build build-lac: abort.o - cd lac ; $(MAKE) exe + cd lac ; $(MAKE) build build-fe: abort.o - cd fe ; $(MAKE) exe + cd fe ; $(MAKE) build build-bits: abort.o - cd bits ; $(MAKE) exe + cd bits ; $(MAKE) build build-deal.II: abort.o - cd deal.II ; $(MAKE) exe + cd deal.II ; $(MAKE) build build-multigrid: abort.o - cd multigrid ; $(MAKE) exe + cd multigrid ; $(MAKE) build # compilation and execution of tests only, no comparison with diff --git a/tests/Makefile.rules b/tests/Makefile.rules index e067d9cc63..10367b2db0 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -134,7 +134,7 @@ run-tests: $(tests:%=%.OK) output: $(tests:%=%.output) -exe: $(tests:%=%.exe) +build: $(tests:%=%.exe) ############################################################ # Link and copy files in ./results/* to generate checked -- 2.39.5