blob: 8ab715397a74b443d08dd5503b8e23f49a0b0dae (
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
|
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGSRC := $(shell basename $(PWD))
TGZ := ../$(PKGSRC)_$(PKGVERS).tar.gz
TGZVNR := ../$(PKGSRC)_$(PKGVERS)-vignettes-not-rebuilt.tar.gz
# 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/kinfit
SDDIR ?= $(RFSVN)/www/kinfit_static
.PHONY: help
pkgfiles = data/* \
DESCRIPTION \
inst/staticdocs/README \
man/* \
NAMESPACE \
R/* \
tests \
vignettes/header.tex \
vignettes/examples.Rnw \
vignettes/kinfit.Rnw \
vignettes/KinGUI/* \
vignettes/references.bib
all: check clean
$(TGZ): $(pkgfiles)
cd ..;\
"$(RBIN)/R" CMD build $(PKGSRC)
$(TGZVNR): $(pkgfiles)
cd ..;\
"$(RBIN)/R" CMD build $(PKGSRC) --no-build-vignettes;\
cd $(PKGSRC);\
mv $(TGZ) $(TGZVNR)
build: $(TGZ)
build-no-vignettes: $(TGZVNR)
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 --as-cran --no-tests --no-build-vignettes $(TGZ)
check-no-vignettes: build-no-vignettes
mv $(TGZVNR) $(TGZ)
"$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ)
mv $(TGZ) $(TGZVNR)
vignettes/kinfit.pdf: vignettes/kinfit.Rnw
"$(RBIN)/Rscript" -e "tools::buildVignette(file = 'vignettes/kinfit.Rnw', dir = 'vignettes')"
vignettes/examples.pdf: vignettes/examples.Rnw
"$(RBIN)/Rscript" -e "tools::buildVignette(file = 'vignettes/examples.Rnw', dir = 'vignettes')"
vignettes: vignettes/examples.pdf vignettes/kinfit.pdf
sd:
"$(RBIN)/Rscript" -e "library(staticdocs); build_site(site_path = '$(SDDIR)')"
clean:
$(RM) -r $(PKGNAME).Rcheck/
$(RM) vignettes/*.R
|