From: Wolfgang Bangerth Date: Fri, 14 Jan 2011 01:52:06 +0000 (+0000) Subject: If intro.dox or results.dox ends in an enumeration that uses the doxygen X-Git-Tag: v8.0.0~4491 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0b3fe39c13c4eb59ea9ab1e9b5e6d4d8887d327;p=dealii.git If intro.dox or results.dox ends in an enumeration that uses the doxygen shortcut way of only using dashes at the beginning of the line, and there is no empty line at the end of the file, then the next heading is going to be part of the enumeration item. We don't want that: avoid that by adding a single empty line. git-svn-id: https://svn.dealii.org/trunk@23188 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/tutorial/Makefile b/deal.II/doc/doxygen/tutorial/Makefile index e77f1ed013..b5978c91c9 100644 --- a/deal.II/doc/doxygen/tutorial/Makefile +++ b/deal.II/doc/doxygen/tutorial/Makefile @@ -147,9 +147,11 @@ $(example-doxygen): @echo "@endhtmlonly" >> $@ @cat $D/examples/$(call get_basename, $@)/doc/intro.dox \ | $(PERL) create_anchors >> $@ + @echo >> $@ @cat generated/$(call get_basename, $@)_prog.dox >> $@ @cat $D/examples/$(call get_basename, $@)/doc/results.dox \ | $(PERL) create_anchors >> $@ + @echo >> $@ @echo " " >> $@ @echo "

The plain program

" >> $@ @echo " @include \"$(call get_basename, $@).cc\"" >> $@