-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (32 loc) · 980 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.DELETE_ON_ERROR:
.PHONY: all clean mrproper dist check test install begin help done verify
load_all:
Rscript -e 'devtools::load_all(".")'
install:
cd ../ && R CMD INSTALL --preclean --no-multiarch --with-keep.source libbib
test:
Rscript -e 'devtools::test()'
check:
Rscript -e 'devtools::check(document = FALSE, args = c("--no-manual"))'
check_doc:
Rscript -e 'devtools::check_man()'
check_rhub:
Rscript -e 'devtools::check_rhub()'
check_win_devel:
Rscript -e 'devtools::check_win_devel()'
check_win_release:
Rscript -e 'devtools::check_win_release()'
check_win_oldrelease:
Rscript -e 'devtools::check_win_oldrelease()'
build_vignettes:
Rscript -e 'devtools::build_vignettes()'
build_manual:
Rscript -e 'devtools::build_manual()'
document:
Rscript -e 'devtools::document()'
build_src:
Rscript -e 'devtools::build()'
build_bin:
Rscript -e 'devtools::build(binary = TRUE, args = c("--preclean"))'
# submit:
# Rscript -e 'devtools::submit_cran()'