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

.SUFFIXES: .md .pdf .html .tmp

all: $(outputs)

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

.md.tmp:
	./ftt-docgen $$(basename $< .md).yaml $< > $@

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

.tmp.html:
	./pandoc.sh $< -o $@ -H fable-doc.css