diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | GNUmakefile | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,4 @@ test.R drfit*.tar.gz +drfit*.zip drfit.Rcheck diff --git a/GNUmakefile b/GNUmakefile index 760dec8..405958c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -2,6 +2,7 @@ PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION) PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION) PKGSRC := $(shell basename $(PWD)) TGZ := $(PKGNAME)_$(PKGVERS).tar.gz +WINBIN := $(PKGNAME)_$(PKGVERS).zip # Specify the directory holding R binaries. To use an alternate R build (say a # pre-prelease version) use `make RBIN=/path/to/other/R/` or `export RBIN=...` @@ -46,4 +47,4 @@ $(WINBIN): build winbin: $(WINBIN) dratwin: winbin - "$(RBIN)/Rscript" -e "drat::insertPackage('$(WINBIN)', 'e:/git/drat/', commit = TRUE)" + "$(RBIN)/Rscript" -e "drat::insertPackage('$(WINBIN)', '~/git/drat/', commit = TRUE)" |