forked from clindet/anor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
65 lines (50 loc) · 1.28 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
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGSRC := $(shell basename `pwd`)
all: doc build
doc:
Rscript -e "devtools::document()"
build:
cd ..;\
R CMD build $(PKGSRC)
build2:
cd ..;\
R CMD build --no-build-vignettes $(PKGSRC)
install:
cd ..;\
R CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
check: build
cd ..;\
R CMD check $(PKGNAME)_$(PKGVERS).tar.gz
check_cran: build
cd ..;\
R CMD check --as-cran $(PKGNAME)_$(PKGVERS).tar.gz
clean:
cd ..;\
$(RM) -r $(PKGNAME).Rcheck/;
clean_test2:
cd ./tests/testthat/ && $(RM) test_annotation.R test_big_file.R test_download.R test_parllel.R;
cleanall:
cd ..;\
$(RM) -r $(PKGNAME).Rcheck/;\
$(RM) -ri $(DOWNLOAD_DIR);\
$(RM) -ri $(DEST_DIR)
test:
cd .;\
Rscript -e "devtools::test()"
test2:
cd ./tests/testthat/;\
cp ./tests/testthat/slow/*.R ./tests/testthat/;\
cd ./;\
Rscript -e "devtools::test()"
format:
cd .;\
Rscript -e "library(formatR);options('formatR.indent'=2);tidy_dir('./R');tidy_dir('./tests/testthat');"
reduce_test:
mkdir ./tests/testthat/bak;\
mv ./tests/testthat/*.R ./tests/testthat/bak/;\
mv ./tests/testthat/bak/$(name).R ./tests/testthat/
clean_reduce:
cd ./tests/testthat;\
mv bak/* ./;\
rmdir bak;