From ad4cd5d9a1f8c3976d08048a441129b1fb49a62b Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 2 Jul 2015 16:05:59 +0200 Subject: Changes to pass R CMD check --as-cran, roxygen run --- GNUmakefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 493299f..9a41b50 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -48,12 +48,12 @@ test: build "$(R_HOME)/bin/Rscript" -e 'library(devtools); devtools::test("pkg")' 2>&1 | tee test.log @echo "DONE." -check: build +quickcheck: build @echo "Running check..." "$(R_HOME)/bin/R" CMD check $(TGZ) @echo "DONE." -crancheck: build +check: build @echo "Running CRAN check..." "$(R_HOME)/bin/R" CMD check --as-cran $(TGZ) @echo "DONE." @@ -62,3 +62,10 @@ install: build @echo "Installing package..." "$(R_HOME)/bin/R" CMD INSTALL --no-multiarch $(TGZ) @echo "DONE." + +winbuilder: build + date + @echo "Uploading to R-release on win-builder" + curl -T $(TGZ) ftp://anonymous@win-builder.r-project.org/R-release/ + @echo "Uploading to R-devel on win-builder" + curl -T $(TGZ) ftp://anonymous@win-builder.r-project.org/R-devel/ -- cgit v1.2.1