From ddaf90160eb9b343e1b170ba1be7414614a8d93a Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Mon, 27 Aug 2012 18:04:44 +0200 Subject: Use current pandoc syntax for PDF --- docs/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/Makefile b/docs/Makefile index f92bfc9..ba95009 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,5 +1,4 @@ PANDOC=$(shell which pandoc) -MD2PDF=$(shell which markdown2pdf) OPTS=-s --smart all: pdf html @@ -12,7 +11,7 @@ clean: rm -f manual.pdf manual.html manual.pdf: manual.md - $(MD2PDF) -o manual.pdf manual.md + $(PANDOC) manual.md -o manual.pdf manual.html: manual.md $(PANDOC) $(OPTS) manual.md -o manual.html -- cgit v1.2.3