From cceb14bfcea39996cf01de1da8b0363904d24b03 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 30 Jan 2014 23:23:12 +0000 Subject: Add a Makefile for buildig manual --- manual/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 manual/Makefile (limited to 'manual/Makefile') diff --git a/manual/Makefile b/manual/Makefile new file mode 100644 index 00000000..93788763 --- /dev/null +++ b/manual/Makefile @@ -0,0 +1,9 @@ +sources = $(wildcard *.mdwn) + +all: manual.pdf manual.html + +manual.pdf: $(sources) + pandoc --toc --chapters -o manual.pdf $(sources) + +manual.html: $(sources) + pandoc --toc --chapters --standalone -o manual.html $(sources) -- cgit v1.2.1