last-svn-commit-48-g1202981 Fix the regeneration of HTML outputs.

* doc/Makefile.am ($(TECHNICAL_HTML_OUTPUTS)) ($(TUTORIAL_HTML_OUTPUTS)) ($(WHITE_PAPER_HTML_OUTPUTS)) ($(REF_GUIDE_HTML_OUTPUTS)): Fix tests on targets. --- milena/ChangeLog | 11 +++++++++++ milena/doc/Makefile.am | 8 ++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index b0e8778..058fc20 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,3 +1,14 @@ +2010-03-18 Roland Levillain <roland@lrde.epita.fr> + + Fix the regeneration of HTML outputs. + + * doc/Makefile.am + ($(TECHNICAL_HTML_OUTPUTS)) + ($(TUTORIAL_HTML_OUTPUTS)) + ($(WHITE_PAPER_HTML_OUTPUTS)) + ($(REF_GUIDE_HTML_OUTPUTS)): + Fix tests on targets. + 2010-03-15 Roland Levillain <roland@lrde.epita.fr> Distribute and clean documentation timestamps. diff --git a/milena/doc/Makefile.am b/milena/doc/Makefile.am index 553a8dd..7f6c1c2 100644 --- a/milena/doc/Makefile.am +++ b/milena/doc/Makefile.am @@ -340,7 +340,7 @@ $(TECHNICAL_HTML).stamp: $(technical_dir)/technical.tex $(technical_dependencies $(TECHNICAL_HTML_OUTPUTS): $(TECHNICAL_HTML).stamp ## Recover from the removal of $@ - @if test -d $@; then :; else \ + @if test -f $@; then :; else \ rm -f $<; \ $(MAKE) $(AM_MAKEFLAGS) $<; \ fi @@ -443,7 +443,7 @@ $(TUTORIAL_HTML).stamp: $(tutorial_dir)/tutorial.tex $(tutorial_dependencies) $(TUTORIAL_HTML_OUTPUTS): $(TUTORIAL_HTML).stamp ## Recover from the removal of $@ - @if test -d $@; then :; else \ + @if test -f $@; then :; else \ rm -f $<; \ $(MAKE) $(AM_MAKEFLAGS) $<; \ fi @@ -559,7 +559,7 @@ $(WHITE_PAPER_HTML).stamp: $(white_paper_dir)/white_paper.tex $(EPSS) $(WHITE_PAPER_HTML_OUTPUTS): $(WHITE_PAPER_HTML).stamp ## Recover from the removal of $@ - @if test -d $@; then :; else \ + @if test -f $@; then :; else \ rm -f $<; \ $(MAKE) $(AM_MAKEFLAGS) $<; \ fi @@ -646,7 +646,7 @@ $(REF_GUIDE_HTML).stamp: $(ref_guide_dir)/ref_guide.tex $(ref_guide_dependencies $(REF_GUIDE_HTML_OUTPUTS): $(REF_GUIDE_HTML).stamp ## Recover from the removal of $@ - @if test -d $@; then :; else \ + @if test -f $@; then :; else \ rm -f $<; \ $(MAKE) $(AM_MAKEFLAGS) $<; \ fi -- 1.5.6.5
participants (1)
-
Roland Levillain