17
0
cdsc_tex/letter_template/Makefile

22 lines
220 B
Makefile

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