diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-03-11 14:36:28 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-03-11 14:36:28 +0100 |
commit | ca643f3cfdd3bc73d37c7f37113bce6d24ae9f38 (patch) | |
tree | 4f2efcabb2f1e2eae4d289ccbfe23133ebe9a671 /doc | |
parent | bd584c514823f1891d95a2ddae04a6f06f5437ca (diff) |
fix doc makefile (can't use pattern rules for extra deps)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 76483996..41dd5e83 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -8,9 +8,13 @@ manual.html: arch.png manual.texi %.pdf: %.dot dot -Tpdf $< > $@ -merchant-api-%.%: merchant-api.content.texi -merchant-api-%.pdf: arch-api.pdf -html-local: arch-api.png +clean-local: + -rm -f arch.png arch.pdf arch-api.png arch-api.pdf + +merchant-api-curl.pdf: merchant-api.content.texi arch-api.pdf +merchant-api-python.pdf: merchant-api.content.texi arch-api.pdf +merchant-api-curl.html: merchant-api.content.texi arch-api.png +merchant-api-python.html: merchant-api.content.texi arch-api.png AM_MAKEINFOHTMLFLAGS = --no-split --css-ref=docstyle.css --css-ref=brown-paper.css |