diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-09-11 10:04:54 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-09-11 10:05:58 +0200 |
commit | 1df33dbb3d310f94ccddbf57906e12bd6fa93c3f (patch) | |
tree | 5d4d364836a0a847b74cee8c8c2bd88d7e6c94b4 /GNUmakefile | |
parent | 7cc5df2ad1e2a1aa5c6d4d9f5865491c6b30ee2a (diff) |
Working version with basic functionality
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 482ec37..5e8e5c1 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -30,13 +30,13 @@ clean: roxygen: @echo "Roxygenizing package..." - "$(R_HOME)/bin/Rscript" -e 'library(devtools); document(".")' 2>&1 | tee roxygen.log + "$(R_HOME)/bin/Rscript" -e 'library(devtools); document(".")' @echo "DONE." $(TGZ): $(pkgfiles) sed -i -e "s/Date:.*/Date: $(DATE)/" DESCRIPTION @echo "Roxygenizing package..." - "$(R_HOME)/bin/Rscript" -e 'library(devtools); document(".")' 2>&1 | tee roxygen.log + "$(R_HOME)/bin/Rscript" -e 'library(devtools); document(".")' @echo "Building package..." git log --no-merges -M --date=iso > ChangeLog "$(R_HOME)/bin/R" CMD build . |