summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 02ea525f1ee8f5dfdce601a800bb1f5892d708d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

# we need xelatex for utf-8 support
tex = xelatex

all: userguide.pdf

.PHONY: all clean

userguide.pdf: userguide/userguide.tex
	$(tex) $^

userguide/userguide.tex: rest-api.tex host-management.tex console.tex code-update.tex

%.tex: %.md
	pandoc -o $@ $^

clean:
	rm -f *.tex userguide.*
OpenPOWER on IntegriCloud