-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile
68 lines (48 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
PACKAGE := $(shell grep '^Package:' DESCRIPTION | sed -E 's/^Package:[[:space:]]+//')
RSCRIPT = Rscript
all: install
test:
${RSCRIPT} -e 'library(methods); devtools::test()'
test_warn:
${RSCRIPT} -e 'options(odin.compiler_warnings = TRUE); devtools::test()'
test_leaks: .valgrind_ignore
R -d 'valgrind --leak-check=full --suppressions=.valgrind_ignore' -e 'devtools::test()'
.valgrind_ignore:
R -d 'valgrind --leak-check=full --gen-suppressions=all --log-file=$@' -e 'library(testthat)'
sed -i.bak '/^=/ d' $@
rm -f [email protected]
roxygen:
@mkdir -p man
${RSCRIPT} -e "library(methods); devtools::document()"
install:
R CMD INSTALL .
build:
R CMD build .
check:
_R_CHECK_CRAN_INCOMING_=FALSE make check_all
check_all:
${RSCRIPT} -e "rcmdcheck::rcmdcheck(args = c('--as-cran', '--no-manual'))"
autodoc:
${RSCRIPT} autodoc.R process
pkgdown:
${RSCRIPT} -e "library(methods); pkgdown::build_site()"
website: pkgdown
./update_web.sh
README.md: README.Rmd
Rscript -e 'library(methods); devtools::load_all(); knitr::knit("README.Rmd")'
sed -i.bak 's/[[:space:]]*$$//' $@
rm -f [email protected]
clean:
rm -f src/*.o src/*.so src/*.dll
coverage:
Rscript -e 'covr::shine(covr::package_coverage(quiet=FALSE))'
vignettes: vignettes/odin.Rmd vignettes/discrete.Rmd vignettes/functions.Rmd
${RSCRIPT} -e 'library(methods); devtools::build_vignettes()'
ir_reference:
${RSCRIPT} scripts/ir-build.R
javascript:
./js/build
cp js/node_modules/dopri/LICENCE inst/LICENSE.dopri
cp js/LICENSE.random inst/LICENSE.random
# No real targets!
.PHONY: all test document install vignettes build javascript