diff options
author | Johannes Ranke <johannes.ranke@jrwb.de> | 2018-12-12 09:24:54 +0100 |
---|---|---|
committer | Johannes Ranke <johannes.ranke@jrwb.de> | 2018-12-12 10:25:39 +0100 |
commit | d894b16fd245c33d458e3036b711be78e70053bd (patch) | |
tree | 48d6ccd1d396319d6990defb50a08d7c30826d39 | |
parent | a8b7ab73a5df4fdf6cac5bad052b9ed77138fc86 (diff) |
Correct dratwin target and ignore winbins
-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)" |