-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
34 lines (24 loc) · 811 Bytes
/
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
PACKAGE := $(shell grep '^Package:' DESCRIPTION | sed -E 's/^Package:[[:space:]]+//')
RSCRIPT = Rscript --no-init-file
install: doc build
R CMD INSTALL . && rm *.tar.gz
build:
R CMD build . --no-build-vignettes
pkgdocs:
${RSCRIPT} -e "pkgdown::build_site()"
doc:
${RSCRIPT} -e "devtools::document()"
eg:
${RSCRIPT} -e "devtools::run_examples(run = TRUE)"
codemeta:
${RSCRIPT} -e "codemetar::write_codemeta()"
check: build
_R_CHECK_CRAN_INCOMING_=FALSE R CMD CHECK --as-cran --no-manual --no-build-vignettes `ls -1tr ${PACKAGE}*gz | tail -n1`
@rm -f `ls -1tr ${PACKAGE}*gz | tail -n1`
@rm -rf ${PACKAGE}.Rcheck
check_windows:
${RSCRIPT} -e "devtools::check_win_devel(); devtools::check_win_release()"
test:
${RSCRIPT} -e 'devtools::test()'
readme:
${RSCRIPT} -e 'knitr::knit("README.Rmd")'