-
-
Notifications
You must be signed in to change notification settings - Fork 878
/
Makefile
50 lines (36 loc) · 1.01 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
# prepare the package for release
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGSRC := $(shell basename `pwd`)
all: check clean
deps:
tlmgr install pgf preview xcolor;\
Rscript -e 'if (!require("Rd2roxygen")) install.packages("Rd2roxygen", repos="http://cran.rstudio.com")'
docs:
R -q -e 'library(Rd2roxygen); rab(".", build = FALSE)'
build:
cd ..;\
R CMD build --no-manual $(PKGSRC)
build-cran:
cd ..;\
R CMD build $(PKGSRC)
install: build
cd ..;\
R CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
check: build-cran
cd ..;\
R CMD check $(PKGNAME)_$(PKGVERS).tar.gz --as-cran
travis: build
cd ..;\
R CMD check $(PKGNAME)_$(PKGVERS).tar.gz --no-manual
integration-run:
xvfb-run make deps knit -C knitr-examples
integration-verify:
GIT_PAGER=cat make diff -C knitr-examples
integration: install integration-run integration-verify
examples:
cd inst/examples;\
Rscript knit-all.R
clean:
cd ..;\
$(RM) -r $(PKGNAME).Rcheck/