1
0
uw_tex_letterhead/Makefile
2018-02-18 15:59:49 -08:00

19 lines
212 B
Makefile

#!/usr/bin/make
all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
%.pdf: %.tex
latexmk -f -xelatex $<
clean:
latexmk -C *.tex
rm -f *.tmp *.run.xml
viewpdf: all
evince *.pdf
pdf: all
.PHONY: clean all