tbm-docs/tech-doc/Makefile

14 lines
242 B
Makefile
Raw Normal View History

2017-08-01 23:36:37 +02:00
.PHONY: all clean
OUTPUT += tech-spec.pdf
all: $(OUTPUT)
%.pdf: %.tex
2017-08-03 15:39:28 +02:00
latexmk -pdf -xelatex -cd -latexoption="--shell-escape" -jobname="$*" $<
2017-08-01 23:36:37 +02:00
clean:
for f in $(basename $(OUTPUT)); do \
latexmk -CA -xelatex -cd -jobname=$$f; \
done