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.
 
 
 
tbm-docs/user-doc/Makefile

13 lines
241 B

.PHONY: all clean
OUTPUT += user-doc.pdf
all: $(OUTPUT)
%.pdf: %.tex
latexmk -pdf -xelatex -cd -latexoption="--shell-escape" -jobname="$*" $<
clean:
for f in $(basename $(OUTPUT)); do \
latexmk -CA -xelatex -cd -jobname=$$f; \
done