Add a run target to push vignette r scripts through.

This commit is contained in:
Graham Williams 2017-02-16 11:45:19 +08:00
Родитель 9b83cd6201
Коммит 4fccf78747
1 изменённых файлов: 4 добавлений и 0 удалений

4
r.mk
Просмотреть файл

@ -4,6 +4,10 @@ RSCRIPT_OPTS = --vanilla
%.R: %.Rmd
${RSCRIPT} ${RSCRIPT_OPTS} -e 'library(knitr);purl("$<", out="$@")'
%.run: %.R
cd $(shell dirname "$<"); ${RSCRIPT} ${RSCRIPT_OPTS} -e 'source("$(shell basename $<)")'
check:
R CMD check --check-subdirs=yes .