From: bangerth Date: Tue, 12 Jan 2010 19:41:45 +0000 (+0000) Subject: Only list MADDs tutorial programs if they are there. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0df3ac964f9f9daf44e40d4c8395f4fa43c4c6e0;p=dealii-svn.git Only list MADDs tutorial programs if they are there. git-svn-id: https://svn.dealii.org/trunk@20351 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/tutorial/Makefile b/deal.II/doc/doxygen/tutorial/Makefile index 6ff8369ae9..55aa035a57 100644 --- a/deal.II/doc/doxygen/tutorial/Makefile +++ b/deal.II/doc/doxygen/tutorial/Makefile @@ -6,7 +6,9 @@ include ../../../common/Make.global_options # plain names of those files that we shall treat example-names = $(notdir $(shell echo $D/examples/step-? \ - $D/examples/step-??)) + $D/examples/step-?? ; \ + if test -d $D/examples/MADDs-1 ; then \ + echo $D/examples/MADDs-* ; fi)) # prefix names for generated intermediate files gen-example-names = $(addprefix generated/, $(example-names))