From e96d510eaed8f326730d55b00a2ff3bbd7485665 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 30 Jan 2014 23:30:37 +0000 Subject: Split up manual into a file per chapter --- manual/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'manual/Makefile') diff --git a/manual/Makefile b/manual/Makefile index 93788763..63b529c1 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -2,8 +2,11 @@ sources = $(wildcard *.mdwn) all: manual.pdf manual.html -manual.pdf: $(sources) +manual.pdf: Makefile $(sources) pandoc --toc --chapters -o manual.pdf $(sources) -manual.html: $(sources) +manual.html: Makefile $(sources) pandoc --toc --chapters --standalone -o manual.html $(sources) + +clean: + rm -f manual.pdf manual.html -- cgit v1.2.1