From: Wolfgang Bangerth Date: Mon, 26 Jun 2000 11:46:41 +0000 (+0000) Subject: Find a better way to check whether kdoc is up-to-date when generating docs. If it... X-Git-Tag: v8.0.0~20349 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e37ee394016e8244c55c13c740d2411dc41cddb4;p=dealii.git Find a better way to check whether kdoc is up-to-date when generating docs. If it is not up-to-date, then re-generate it. git-svn-id: https://svn.dealii.org/trunk@3074 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/auto/kdoc/Makefile.in b/deal.II/doc/auto/kdoc/Makefile.in index 32c49217eb..fa53852af1 100644 --- a/deal.II/doc/auto/kdoc/Makefile.in +++ b/deal.II/doc/auto/kdoc/Makefile.in @@ -46,18 +46,11 @@ endif kdoc: kdoc-installed $(kdoc.library-files) -# check whether kdoc is already installed. if not, then try to do so +# check whether kdoc is already installed. if not, then try to do +# so. also install afresh if not up-to-date with the sources kdoc-installed: - @if test ! -d $(kdocdir) ; then \ - echo "========================================" ; \ - echo "Trying to install kdoc first" ; \ - echo "========================================" ; \ - cd $(kdocdir:kdoc/bin=kdoc) ; \ - $(MAKE) install ; \ - echo "========================================" ; \ - echo "Done" ; \ - echo "========================================" ; \ - fi + cd $(kdocdir:kdoc/bin=kdoc) ; $(MAKE) + # now for the generation of the documentation of the sublibraries.