mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 11:58:10 +01:00
doc: introduce stamp file for info build
This partially fixes (i.e. just for sphinx) the problem reported by Daniel in id:87r29wwgq2.fsf@fifthhorseman.net.
This commit is contained in:
parent
d825847b52
commit
b7e08901e8
1 changed files with 6 additions and 3 deletions
|
@ -64,8 +64,11 @@ $(DOCBUILDDIR)/.texi.stamp: $(ALL_RST_FILES) $(DOC_PREREQS)
|
|||
$(SPHINXBUILD) -b texinfo -d $(DOCBUILDDIR)/texinfo_doctrees $(ALLSPHINXOPTS) $(DOCBUILDDIR)/texinfo
|
||||
touch $@
|
||||
|
||||
sphinx-info: sphinx-texinfo
|
||||
sphinx-info: $(DOCBUILDDIR)/.info.stamp
|
||||
|
||||
$(DOCBUILDDIR)/.info.stamp: $(DOCBUILDDIR)/.texi.stamp $(DOC_PREREQS)
|
||||
$(MAKE) -C $(DOCBUILDDIR)/texinfo info
|
||||
touch $@
|
||||
|
||||
# Use the man page converter that is available. We should never depend
|
||||
# on MAN_ROFF_FILES if a converter is not available.
|
||||
|
@ -129,7 +132,7 @@ ifneq ($(HAVE_SPHINX)$(HAVE_MAKEINFO),11)
|
|||
build-info:
|
||||
@echo "Missing sphinx or makeinfo, not building info pages"
|
||||
else
|
||||
build-info: sphinx-info
|
||||
build-info: $(DOCBUILDDIR)/.info.stamp
|
||||
endif
|
||||
|
||||
ifneq ($(HAVE_SPHINX)$(HAVE_MAKEINFO)$(HAVE_INSTALL_INFO),111)
|
||||
|
@ -147,5 +150,5 @@ $(dir)/config.dox: version.stamp
|
|||
echo "INPUT=${srcdir}/lib/notmuch.h" >> $@
|
||||
|
||||
CLEAN := $(CLEAN) $(DOCBUILDDIR) $(DOCBUILDDIR)/.roff.stamp $(DOCBUILDDIR)/.texi.stamp
|
||||
CLEAN := $(CLEAN) $(DOCBUILDDIR)/.html.stamp
|
||||
CLEAN := $(CLEAN) $(DOCBUILDDIR)/.html.stamp $(DOCBUILDDIR)/.info.stamp
|
||||
CLEAN := $(CLEAN) $(MAN_GZIP_FILES) $(MAN_ROFF_FILES) $(dir)/conf.pyc $(dir)/config.dox
|
||||
|
|
Loading…
Reference in a new issue