summaryrefslogtreecommitdiff
path: root/manual/Makefile
blob: 9378876336db0a7b8b8d03eba4be6b6acf1e4b89 (plain)
1
2
3
4
5
6
7
8
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)