X-Git-Url: https://code.communitydata.science/cdsc_tex.git/blobdiff_plain/d02648e69375636dbd26754833af438befaa54b4..ee4ba6c2b4a7350c744d7b760ec730c93f5694c6:/paper_template/Makefile?ds=sidebyside diff --git a/paper_template/Makefile b/paper_template/Makefile index 0bca574..595c370 100644 --- a/paper_template/Makefile +++ b/paper_template/Makefile @@ -1,11 +1,9 @@ #!/usr/bin/make -all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) +all: $(patsubst %.Rtex,%.pdf,$(wildcard *.Rtex)) -# use the following section for Rnw/knitr documents -# all: $(patsubst %.Rnw,%.pdf,$(wildcard *.Rnw)) -# %.tex: %.Rnw -# Rscript -e "library(knitr); knit('$<')" +%.tex: %.Rtex + Rscript -e "library(knitr); knit('$<')" %.pdf: %.tex latexmk -f -pdf $< @@ -15,9 +13,9 @@ clean: 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 + # the following lines are useful for Rtex/knitr + rm -rf cache/ figure/ + rm -f *.tex viewpdf: all evince *.pdf @@ -27,4 +25,4 @@ vc: resources/vc-git pdf: all .PHONY: clean all -# .PRECIOUS: %.tex +.PRECIOUS: %.tex