From: Matthias Maier Date: Fri, 1 Mar 2013 00:53:58 +0000 (+0000) Subject: Last Bugfix X-Git-Tag: v8.0.0~1079^2~69 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b9a94228cd15f4beced5807869fcfe99117cb37;p=dealii.git Last Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@28662 0785d39b-7218-0410-832d-ea1e28bc413d --- 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