-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
47 lines (34 loc) · 1.06 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
PACKAGE := $(shell grep '^Package:' DESCRIPTION | sed -E 's/^Package:[[:space:]]+//')
RSCRIPT = Rscript --no-init-file
FILE_TARGET := "R/${FILE}"
.PHONY: docs
install: doc build
R CMD INSTALL . && rm *.tar.gz
build:
R CMD build .
doc:
${RSCRIPT} -e "devtools::document()"
docs:
${RSCRIPT} -e "pkgdown::build_site(); pkgdown::preview_site(preview=TRUE)"
eg:
${RSCRIPT} -e "devtools::run_examples(run_dontrun = TRUE)"
check: build
_R_CHECK_CRAN_INCOMING_=FALSE R CMD CHECK --as-cran --no-manual `ls -1tr ${PACKAGE}*gz | tail -n1`
@rm -f `ls -1tr ${PACKAGE}*gz | tail -n1`
@rm -rf ${PACKAGE}.Rcheck
test:
${RSCRIPT} -e "devtools::test()"
readme:
${RSCRIPT} -e "knitr::knit('README.Rmd')"
lint_package:
${RSCRIPT} -e "lintr::lint_package()"
# use: `make style_file FILE=stuff.R`
# ("R/" is prepended); accepts 1 file only
style_file:
${RSCRIPT} -e 'styler::style_file(${FILE_TARGET})'
style_package:
${RSCRIPT} -e "styler::style_pkg()"
vign:
cd vignettes;\
${RSCRIPT} -e "Sys.setenv(NOT_CRAN='true'); knitr::knit('rls.Rmd.og', output = 'rls.Rmd')";\
cd ..