From b6b405b2f13121c254e82bc1483488d627ac2f91 Mon Sep 17 00:00:00 2001 From: maier Date: Fri, 1 Mar 2013 00:53:58 +0000 Subject: [PATCH] Last Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@28662 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/GNUmakefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/GNUmakefile b/deal.II/examples/GNUmakefile index 1516700a08..259d54a128 100644 --- a/deal.II/examples/GNUmakefile +++ b/deal.II/examples/GNUmakefile @@ -16,10 +16,10 @@ steps:= $(wildcard step-*) configure_examples: $(steps:%=%/Makefile) %/Makefile: - -cd $(@D) && cmake . > /dev/null 2>&1 + -cd $(@D) && cmake . > configure.log 2>&1 .PHONY: run_examples -run_examples: $(steps:%=%/Output) +run_examples: $(steps:%=%/OK) -%/Output: %/Makefile - cd $(@D) && if [ -f Makefile ]; then make run; fi > Output 2>&1 +%/OK: %/Makefile + cd $(@D) && if [ -f Makefile ]; then (make run > run.log 2>&1); fi && touch OK -- 2.39.5