X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=doc%2FMakefile;h=7e59c93db5cd398e4be949d23d82b00e54cf4e94;hb=db9816d0aa1265e9ad9565d0531e0d274f249983;hp=461a904954aaa797c882cadf7627809bd24c0593;hpb=9c12ad6dbcbc663b2179aaf21abaf132ec0398ae;p=mkws-moved-to-github.git diff --git a/doc/Makefile b/doc/Makefile index 461a904..7e59c93 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 \ @@ -33,7 +36,7 @@ all: $(INSTALLED) # texlive-latex-recommended ../tools/htdocs/%.pdf: %.markdown rm -f $@ - pandoc --standalone $< -o $@ + $(MARKDOWN2PDF) $< -o $@ chmod ugo-w $@ clean: