18
0
cdsc_examples_repository/grfp_proposals/nate_2016_funded/Makefile~

27 lines
372 B
Makefile

#!/usr/bin/make
all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
pdf: all
%.pdf: %.tex
latexmk -f -pdf -quiet $<
clean:
latexmk -f -pdf -quiet -c *.tex
rm -rf figure/
rm -f *.tex
rm -f *.tmp
rm -f vc
rm -f *.bbl
rm -f generalizable_wiki.pdf
viewpdf: all
evince *.pdf
spell:
aspell -c -t --tex-check-comments -b text.tex
.PHONY: clean all
.PRECIOUS: %.tex