19 lines
212 B
Makefile
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
|
|
|