aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2015-07-02 16:05:59 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2015-07-02 16:05:59 +0200
commitad4cd5d9a1f8c3976d08048a441129b1fb49a62b (patch)
tree64eee14bf0a47ea1bc2057770cf7fe6c93de8f54 /GNUmakefile
parentfef0bb7fe916f91dcff089c17aa3290c0ea1ab1f (diff)
Changes to pass R CMD check --as-cran, roxygen run
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile11
1 files changed, 9 insertions, 2 deletions
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/

Contact - Imprint