From: maier Date: Fri, 1 Mar 2013 00:53:58 +0000 (+0000) Subject: Last Bugfix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6b405b2f13121c254e82bc1483488d627ac2f91;p=dealii-svn.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