X-Git-Url: https://code.communitydata.science/cdsc_tex.git/blobdiff_plain/e0a06dfb30835955b4da354ed1ccfec192e773eb..d02648e69375636dbd26754833af438befaa54b4:/assignment_template/Makefile diff --git a/assignment_template/Makefile b/assignment_template/Makefile new file mode 100644 index 0000000..9d0527f --- /dev/null +++ b/assignment_template/Makefile @@ -0,0 +1,28 @@ +#!/usr/bin/make + +all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) + +# use the following section for Rnw/knitr documents +# all: $(patsubst %.Rnw,%.pdf,$(wildcard *.Rnw)) +# %.tex: %.Rnw +# Rscript -e "library(knitr); knit('$<')" + +%.pdf: %.tex + latexmk -f -pdf $< + +clean: + latexmk -C *.tex + rm -f *.tmp *.run.xml + rm -f vc + rm -f *.bbl + # the following lines are useful for Rnw/knitr + # rm -rf cache/ figure/ + # rm -f *.tex + +viewpdf: all + evince *.pdf + +pdf: all + +.PHONY: clean all +# .PRECIOUS: %.tex