From 5bab7f4f2b3aab4921bf186d83751e40371a5e2c Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 14 Jan 2011 01:52:06 +0000 Subject: [PATCH] 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 --- deal.II/doc/doxygen/tutorial/Makefile | 2 ++ 1 file changed, 2 insertions(+) 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\"" >> $@ -- 2.39.5