aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2014-12-17 21:39:42 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2014-12-19 11:30:44 +0100
commit92d97ba99d7b90d95a67796cb5e68f28f752b70b (patch)
tree09fdc36f58686f04c932bde80283a9a9fc596870 /Makefile
Initial commit: R6 class for TOXSWA cwa files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1d87845
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,51 @@
+PKGSRC := $(shell basename $(CURDIR))
+PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" pkg/DESCRIPTION)
+PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" pkg/DESCRIPTION)
+TGZ := $(PKGSRC)_$(PKGVERS).tar.gz
+R_HOME ?= $(shell R RHOME)
+DATE := $(shell date +%Y-%m-%d)
+
+.PHONEY: usage check clean
+
+usage:
+ @echo "Usage: make TARGET with TARGET being:"
+ @echo ""
+ @echo " clean - Clean up."
+ @echo " roxygen - Roxygenize."
+ @echo " build - Build source package of last commit."
+ @echo " check - Run CRAN check on the package."
+ @echo " install - Install the package."
+
+pkgfiles = pkg/DESCRIPTION \
+ pkg/inst/testdata/* \
+ pkg/R/*
+
+clean:
+ @echo "Cleaning up..."
+ rm -fR pkg.Rcheck
+ @echo "DONE."
+
+roxygen:
+ @echo "Roxygenizing package..."
+ "$(R_HOME)/bin/Rscript" -e 'library(roxygen2); roxygenize("pkg")' > roxygen.log 2>&1 || cat roxygen.log
+ @echo "DONE."
+
+$(TGZ): $(pkgfiles)
+ @echo "Building package..."
+ sed -i -e "s/Date:.*/Date: $(DATE)/" pkg/DESCRIPTION
+ "$(R_HOME)/bin/Rscript" -e 'library(roxygen2); roxygenize("pkg")' > roxygen.log 2>&1 || cat roxygen.log
+ git log --no-merges -M --date=iso pkg/ > pkg/ChangeLog
+ "$(R_HOME)/bin/R" CMD build pkg > build.log 2>&1
+ @echo "DONE."
+
+build: $(TGZ)
+
+check: build
+ @echo "Running CRAN check..."
+ "$(R_HOME)/bin/R" CMD check --as-cran $(TGZ)
+ @echo "DONE."
+
+install: build
+ @echo "Installing package..."
+ "$(R_HOME)/bin/R" CMD INSTALL --no-multiarch $(TGZ)
+ @echo "DONE."

Contact - Imprint