-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile
46 lines (33 loc) · 1.02 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
PACKAGE := $(shell grep '^Package:' DESCRIPTION | sed -E 's/^Package:[[:space:]]+//')
RSCRIPT = Rscript --no-init-file
all:
${RSCRIPT} -e 'library(methods); devtools::compile_dll()'
test:
${RSCRIPT} -e 'library(methods); devtools::test()'
test_all:
REMAKE_TEST_INSTALL_PACKAGES=true make test
doc:
@mkdir -p man
${RSCRIPT} -e "library(methods); devtools::document()"
eg:
${RSCRIPT} -e "devtools::run_examples()"
install: doc build
R CMD INSTALL . && rm *.tar.gz
build:
R CMD build .
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
check_all:
REMAKE_TEST_INSTALL_PACKAGES=true make check
clean:
rm -f src/jq/*.o src/*.o src/*.so
attributes:
${RSCRIPT} -e 'library(methods); Rcpp::compileAttributes()'
README.md: README.Rmd
${RSCRIPT} -e "library(methods); knitr::knit('$<')"
sed -i.bak 's/[[:space:]]*$$//' README.md
rm -f [email protected]
# No real targets!
.PHONY: all test document install