17
0
cdsc_tex/paper_template/Makefile
Benjamin Mako Hill ce30e1ac61 hand-merged knitr material
- branch is now knitrified
- added material to the gitignore for tex files
2018-08-04 11:10:39 -07:00

31 lines
509 B
Makefile

#!/usr/bin/make
all: $(patsubst %.Rnw,%.pdf,$(wildcard *.Rnw))
# 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
vc: resources/vc-git
pdf: all
.PHONY: clean all
.PRECIOUS: %.tex