diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-07-02 16:05:59 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-07-02 16:05:59 +0200 |
commit | ad4cd5d9a1f8c3976d08048a441129b1fb49a62b (patch) | |
tree | 64eee14bf0a47ea1bc2057770cf7fe6c93de8f54 /GNUmakefile | |
parent | fef0bb7fe916f91dcff089c17aa3290c0ea1ab1f (diff) |
Changes to pass R CMD check --as-cran, roxygen run
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 11 |
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/ |