summaryrefslogtreecommitdiffstats
path: root/docs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 83c1d01..ff7113d 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -10,11 +10,15 @@ html: manual.html
clean:
rm -f manual.pdf manual.html
-manual.pdf: manual.md
+manual.pdf: manual.md gen-changelog
+ ./gen-changelog
$(PANDOC) $(OPTS) manual.md z-changes-*.md -o manual.pdf
+ rm z-changes-*.md
-manual.html: manual.md style.css
+manual.html: manual.md style.css gen-changelog
+ ./gen-changelog
$(PANDOC) $(OPTS) manual.md z-changes-*.md -H webfonts.html -c style.css -o manual.html
+ rm z-changes-*.md
ifeq ($(PANDOC),)
$(warning Pandoc not found!)