mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Fixed running texi2html. It was being run pointlessly every time make was run
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@28712 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
380d90e265
commit
9c885dc508
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2009-09-19 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Instance/Documentation/texi.make ($(GNUSTEP_INSTANCE)_toc.html):
|
||||
Changed to be $(GNUSTEP_INSTANCE)/$(GNUSTEP_INSTANCE).html to
|
||||
match what texi2html is currently doing. This should prevent
|
||||
pointless rebuilds of html documentation from texi documentation.
|
||||
(internal-doc-all_): Updated dependencies for this change.
|
||||
|
||||
2009-09-19 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Documentation/releasenotes.texi: Updated release notes.
|
||||
|
|
|
@ -63,7 +63,7 @@ endif
|
|||
|
||||
internal-doc-all_:: $(GNUSTEP_INSTANCE).info \
|
||||
$(GNUSTEP_INSTANCE).pdf \
|
||||
$(GNUSTEP_INSTANCE)_toc.html
|
||||
$(GNUSTEP_INSTANCE)/$(GNUSTEP_INSTANCE).html
|
||||
|
||||
internal-textdoc-all_:: $(GNUSTEP_INSTANCE)
|
||||
|
||||
|
@ -88,7 +88,7 @@ $(GNUSTEP_INSTANCE).pdf: $(TEXI_FILES)
|
|||
-$(GNUSTEP_TEXI2PDF) $(GNUSTEP_TEXI2PDF_FLAGS) $(ADDITIONAL_TEXI2PDF_FLAGS) \
|
||||
$(GNUSTEP_INSTANCE).texi -o $@
|
||||
|
||||
$(GNUSTEP_INSTANCE)_toc.html: $(TEXI_FILES)
|
||||
$(GNUSTEP_INSTANCE)/$(GNUSTEP_INSTANCE).html: $(TEXI_FILES)
|
||||
-$(GNUSTEP_TEXI2HTML) $(GNUSTEP_TEXI2HTML_FLAGS) $(ADDITIONAL_TEXI2HTML_FLAGS) \
|
||||
$(GNUSTEP_INSTANCE).texi
|
||||
|
||||
|
|
Loading…
Reference in a new issue