summaryrefslogtreecommitdiff
path: root/manual/Makefile
blob: 63b529c16dd17ebea85d15dc850db5e6235577b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
sources = $(wildcard *.mdwn)

all: manual.pdf manual.html

manual.pdf: Makefile $(sources)
	pandoc --toc --chapters -o manual.pdf $(sources)

manual.html: Makefile $(sources)
	pandoc --toc --chapters --standalone -o manual.html $(sources)

clean:
	rm -f manual.pdf manual.html