summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3bf6fb7b3c1f6b40bee900f99fddb0cf64f3868a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
docs = echo.md tutorial.md fable-arch.md
outputs = $(docs:.md=.pdf) $(docs:.md=.html)

.SUFFIXES: .md .pdf .html

all: $(outputs)

publish:
	install -d files
	install -m 0644 $(outputs) files

.md.pdf:
	./pandoc.sh $< -o $@

.md.html:
	./pandoc.sh $< -o $@