From 92d97ba99d7b90d95a67796cb5e68f28f752b70b Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Wed, 17 Dec 2014 21:39:42 +0100 Subject: Initial commit: R6 class for TOXSWA cwa files --- Makefile | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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." -- cgit v1.2.1