-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile
34 lines (24 loc) · 793 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
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" QUILT/DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" QUILT/DESCRIPTION)
PKGSRC := $(shell basename `pwd`)
all: rd check clean
rd:
cd $(PKGNAME);\
Rscript -e 'roxygen2::roxygenise(".")'
readme:
Rscript -e 'rmarkdown::render("README.Rmd", "html_document")'
readme2:
Rscript -e 'rmarkdown::render("README.Rmd")'
Rscript -e 'pkgdown::build_site()'
Rscript -e 'pkgdown::build_articles()'
build: rd
R CMD build $(PKGSRC)
install: build
R CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
check:
Rscript -e 'devtools::check("QUILT")'
check2: build
# Rscript -e 'rcmdcheck::rcmdcheck("$(PKGNAME)_$(PKGVERS).tar.gz", args="--as-cran")'
R CMD check $(PKGNAME)_$(PKGVERS).tar.gz
clean:
$(RM) -r $(PKGNAME).Rcheck/