blob: a169bf1ab6d97c8942f462e3b4f5bf25743852af (
plain) (
blame)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGDIR := $(PWD)
TGZ := $(PKGNAME)_$(PKGVERS).tar.gz
TGZVNR := $(PKGNAME)_$(PKGVERS)-vignettes-not-rebuilt.tar.gz
WINBIN := $(PKGNAME)_$(PKGVERS).zip
# Specify the directory holding R binaries. To use an alternate R build (say a
# pre-prelease version) use `make RBIN=/path/to/other/R/` or `export RBIN=...`
# If no alternate bin folder is specified, the default is to use the folder
# containing the first instance of R on the PATH.
RBIN ?= $(shell dirname "`which R`")
# Specify static documentation directories for subversion on r-forge
RFSVN ?= $(HOME)/svn/kinfit.r-forge
RFDIR ?= $(RFSVN)/pkg/gmkin
SDDIR ?= $(RFSVN)/www/gmkin_static
pkgfiles = NEWS.md \
data/* \
DESCRIPTION \
inst/GUI/* \
inst/GUI/png* \
man/* \
NAMESPACE \
R/* \
man/* \
README.html \
TODO \
vignettes/gmkin_manual.html
all: check clean
$(TGZ): $(pkgfiles)
"$(RBIN)/R" CMD build .
$(TGZVNR): $(pkgfiles)
"$(RBIN)/R" CMD build --no-build-vignettes . ;\
mv $(TGZ) $(TGZVNR)
build: $(TGZ)
build-no-vignettes: $(TGZVNR)
$(WINBIN): build
@echo "Building windows binary package..."
"$(RBIN)/R" CMD INSTALL $(TGZ) --build
@echo "DONE."
winbin: $(WINBIN)
install: build
"$(RBIN)/R" CMD INSTALL $(TGZ)
install-no-vignettes: build-no-vignettes
"$(RBIN)/R" CMD INSTALL $(TGZVNR)
check: build
# Vignettes have been rebuilt by the build target
"$(RBIN)/R" CMD check --no-tests --no-build-vignettes $(TGZ)
check-no-vignettes: build-no-vignettes
mv $(TGZVNR) $(TGZ)
"$(RBIN)/R" CMD check --no-tests $(TGZ)
mv $(TGZ) $(TGZVNR)
README.html: README.md
"$(RBIN)/Rscript" -e "rmarkdown::render('README.md', output_format = 'html_document', output_options = list(self_contained = TRUE))"
vignettes/gmkin_manual.html: vignettes/gmkin_manual.Rmd vignettes/img/*
"$(RBIN)/Rscript" -e "tools::buildVignette(file = 'vignettes/gmkin_manual.Rmd', dir = 'vignettes')"
manual: vignettes/gmkin_manual.html
vignettes: vignettes/gmkin_manual.html
pd:
"$(RBIN)/Rscript" -e "pkgdown::build_site()"
git add -A
git commit -m 'Static documentation rebuilt by pkgdown' -e
drat: build
"$(RBIN)/Rscript" -e "drat::insertPackage('$(TGZ)', commit = TRUE)"
dratwin: winbin
"$(RBIN)/Rscript" -e "drat::insertPackage('$(WINBIN)', '~/git/drat/', commit = TRUE)"
r-forge:
git archive master > $(PKGDIR)/gmkin.tar;\
cd $(RFDIR) && rm -r `ls` && tar -xf $(PKGDIR)/gmkin.tar;\
rm -r $(SDDIR)/*;\
cp -a docs/* $(SDDIR);\
svn add --force .; svn rm --force `svn status | grep "\!" | cut -d " " -f 8`; cd $(RFSVN) && svn commit -m 'sync with git'
clean:
$(RM) -r $(PKGNAME).Rcheck/
$(RM) vignettes/*.R
|