blob: 4511b07ff45191e282e3843106a1f5b17450f3aa (
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
|
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGSRC := $(shell basename $(PWD))
# 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`")
.PHONY: help
help:
@echo "\nExecute development tasks for $(PKGNAME)\n"
@echo "Usage: \`make <task>\` where <task> is one of:"
@echo ""
@echo "Development Tasks"
@echo "-----------------"
@echo " build Create the package"
@echo " build-no-vignettes Create the package without rebuilding vignettes"
@echo " check Invoke build and then check the package"
@echo " check-no-vignettes Invoke build without rebuilding vignettes, and then check"
@echo " install Invoke build and then install the result"
@echo " install-no-vignettes Invoke build without rebuilding vignettes and then install the result"
@echo " test Install a new copy of the package and run it "
@echo " through the testsuite"
@echo " test-no-vignettes Invoke build without rebuilding vignettes, and then run it"
@echo " through the testsuite"
@echo ""
@echo "Packaging Tasks"
@echo "---------------"
@echo " release Give some reminders"
@echo ""
@echo "Using R in: $(RBIN)"
@echo "Set the RBIN environment variable to change this."
@echo ""
#------------------------------------------------------------------------------
# Development Tasks
#------------------------------------------------------------------------------
build:
cd ..;\
"$(RBIN)/R" CMD build $(PKGSRC)
build-no-vignettes:
cd ..;\
"$(RBIN)/R" CMD build $(PKGSRC) --no-build-vignettes
install: build
cd ..;\
"$(RBIN)/R" CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
install-no-vignettes: build-no-vignettes
cd ..;\
"$(RBIN)/R" CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
check: build
cd ..;\
"$(RBIN)/R" CMD check --as-cran --no-tests $(PKGNAME)_$(PKGVERS).tar.gz
check-no-vignettes: build-no-vignettes
cd ..;\
"$(RBIN)/R" CMD check --as-cran --no-tests $(PKGNAME)_$(PKGVERS).tar.gz
test: install
cd tests;\
"$(RBIN)/Rscript" doRUnit.R
test-no-vignettes: install-no-vignettes
cd tests;\
"$(RBIN)/Rscript" doRUnit.R
#------------------------------------------------------------------------------
# Packaging Tasks
#------------------------------------------------------------------------------
release:
@echo "\nHow about make test and make check?"
@echo "\nIs the DESCRIPTION file up to date?"
@echo "\nTo update the svn repository tied to the local r-forge branch with"
@echo "changes in the local master branch, run:"
@echo "'git checkout r-forge'"
@echo "'git merge --squash master'"
@echo "'git commit'"
@echo "'git svn dcommit'"
@echo "\nThen change back to the master branch:"
@echo "'git checkout master'"
|