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.
|
.PHONY: all clean
|
|
|
|
OUTPUT += tech-spec.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
|
|
|