X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=doc%2FMakefile;h=7d2cbbda8bd4c45cf1fe7ca7e1ea681652c5569a;hb=d7f7e11af10210fd9872cedc1489fe0b692ca589;hp=f65d44aa9b99413c450efacc9c9940c86e280834;hpb=1df9e4858bdc8707ab4e58a7d520e24c85614ba8;p=mkws-moved-to-github.git diff --git a/doc/Makefile b/doc/Makefile index f65d44a..7d2cbbd 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -3,6 +3,9 @@ # To build the PDFs, you will need these Debian packages: # texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended +# Older versions of pandoc don't do PDF output, but have a companion program +MARKDOWN2PDF = $(shell if which markdown2pdf > /dev/null; then echo markdown2pdf; else echo pandoc --standalone; fi) + DOCS = index.html index.pdf \ mkws-manual.html mkws-manual.pdf \ mkws-developer.html mkws-developer.pdf \ @@ -28,18 +31,18 @@ all: $(INSTALLED) pandoc --standalone --toc -c mkws-doc.css $< | ./tweak-html > $@ chmod ugo-w $@ -# ### In order to compile the manual, which has tables, to PDF, -# you will need to install the Debian package -# texlive-latex-recommended ../tools/htdocs/%.pdf: %.markdown rm -f $@ - pandoc --standalone $< -o $@ + $(MARKDOWN2PDF) $< -o $@ chmod ugo-w $@ clean: rm -f $(INSTALLED) rm -f *.drupal.html +distclean: clean + # Nothing more to remove in the doc directory + push: pandoc --toc index.markdown > index.drupal.html pandoc --toc mkws-manual.markdown > mkws-manual.drupal.html