diff options
author | Theophile Ranquet <ranquet@lrde.epita.fr> | 2012-12-04 16:09:24 +0100 |
---|---|---|
committer | Theophile Ranquet <ranquet@lrde.epita.fr> | 2012-12-14 18:11:11 +0100 |
commit | f039b5180581b8aed982e4c3107ceebfb82703f8 (patch) | |
tree | 2a74414447f33457633a198323dd75c8acfc7a7b /doc/local.mk | |
parent | b9278c7d174c1be5d7482343c5e433f428657ed0 (diff) | |
download | bison-f039b5180581b8aed982e4c3107ceebfb82703f8.tar.gz |
doc: fix build dependencies
Suggested by Nick Bowler
<http://lists.gnu.org/archive/html/bug-automake/2012-12/msg00001.html>
* doc/local.mk: Avoid overwriting Automake's rules.
Diffstat (limited to 'doc/local.mk')
-rw-r--r-- | doc/local.mk | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/local.mk b/doc/local.mk index aaea996d..cef4448c 100644 --- a/doc/local.mk +++ b/doc/local.mk @@ -20,7 +20,14 @@ doc_bison_TEXINFOS = \ doc/fdl.texi \ doc/gpl-3.0.texi -TEXI2DVI = texi2dvi --build-dir=doc/bison.t2d +# Cannot express dependencies directly on file names because of Automake. +# Obfuscate with a variable. +doc_bison = doc/bison +$(doc_bison).dvi: $(FIGS_DOT:.dot=.eps) +$(doc_bison).pdf: $(FIGS_DOT:.dot=.pdf) +$(doc_bison).html: $(FIGS_DOT:.dot=.html) + +TEXI2DVI = texi2dvi --build-dir=doc/bison.t2d -I doc CLEANDIRS = doc/bison.t2d clean-local: rm -rf $(CLEANDIRS) @@ -123,10 +130,6 @@ EXTRA_DIST += \ $(FIGS_DOT:.dot=.eps) $(FIGS_DOT:.dot=.pdf) $(FIGS_DOT:.dot=.png) SUFFIXES += .dot .eps .pdf .png -doc/bison.dvi: $(FIGS_DOT:.dot=.eps) -doc/bison.html: $(FIGS_DOT:.dot=.png) -doc/bison.pdf: $(FIGS_DOT:.dot=.pdf) - .dot.eps: $(AM_V_GEN) $(MKDIR_P) `echo "./$@" | sed -e 's,/[^/]*$$,,'` $(AM_V_at) $(DOT) -Gmargin=0 -Teps $< >$@.tmp |