You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
251 B
14 lines
251 B
8 years ago
|
.PHONY: all clean
|
||
|
|
||
|
OUTPUT += user-doc.pdf
|
||
|
|
||
|
all: $(OUTPUT)
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
latexmk -pdf -xelatex -cd -latexoption="--shell-escape" -use-make -jobname="$*" $<
|
||
|
|
||
|
clean:
|
||
|
for f in $(basename $(OUTPUT)); do \
|
||
|
latexmk -CA -xelatex -cd -jobname=$$f; \
|
||
|
done
|