blob: b034b3e6c245bc5cbe6145321e170de1084733e5 (
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
|
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 " check Invoke build and then check the package"
@echo " install Invoke build and then install the result"
@echo ""
#------------------------------------------------------------------------------
# Development Tasks
#------------------------------------------------------------------------------
NEWS: NEWS.md
sed -e 's/^-/ -/' -e 's/^## *//' -e 's/^#/\t\t/' <NEWS.md | fmt -80 >NEWS
build: NEWS
cd ..;\
"$(RBIN)/R" CMD build $(PKGSRC)
install: build
cd ..;\
"$(RBIN)/R" CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz
check: build
cd ..;\
"$(RBIN)/R" CMD check --as-cran $(PKGNAME)_$(PKGVERS).tar.gz
|