PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION) PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION) PKGSRC := $(shell basename $(PWD)) TGZ := ../$(PKGSRC)_$(PKGVERS).tar.gz TGZVNR := ../$(PKGSRC)_$(PKGVERS)-vignettes-not-rebuilt.tar.gz # 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=...` # If no alternate bin folder is specified, the default is to use the folder # containing the first instance of R on the PATH. RBIN ?= $(shell dirname "`which R`") # # Specify static documentation directories for subversion on r-forge RFSVN ?= $(HOME)/svn/kinfit.r-forge SDDIR ?= $(RFSVN)/www/gmkin_static .PHONY: help pkgfiles = NEWS \ data/* \ DESCRIPTION \ inst/GUI/gmkin.R \ inst/staticdocs/README \ man/* \ NAMESPACE \ R/* \ README.md \ TODO \ vignettes/gmkin_manual.html all: NEWS check clean NEWS: NEWS.md sed -e 's/^-/ -/' -e 's/^## *//' -e 's/^#/\t\t/' NEWS $(TGZ): $(pkgfiles) cd ..;\ "$(RBIN)/R" CMD build $(PKGSRC) $(TGZVNR): $(pkgfiles) cd ..;\ "$(RBIN)/R" CMD build $(PKGSRC) --no-build-vignettes;\ cd $(PKGSRC);\ mv $(TGZ) $(TGZVNR) build: $(TGZ) build-no-vignettes: $(TGZVNR) install: build "$(RBIN)/R" CMD INSTALL $(TGZ) install-no-vignettes: build-no-vignettes "$(RBIN)/R" CMD INSTALL $(TGZVNR) check: build # Vignettes have been rebuilt by the build target "$(RBIN)/R" CMD check --as-cran --no-tests --no-build-vignettes $(TGZ) check-no-vignettes: build-no-vignettes mv $(TGZVNR) $(TGZ) "$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ) mv $(TGZ) $(TGZVNR) vignettes/gmkin_manual.html: vignettes/gmkin_manual.Rmd "$(RBIN)/Rscript" -e "tools::buildVignette(file = 'vignettes/gmkin_manual.Rmd', dir = 'vignettes')" vignettes: vignettes/gmkin_manual.html sd: "$(RBIN)/Rscript" -e "library(staticdocs); build_site()" move-sd: rm -rf $(SDDIR)/*;\ cp -r inst/web/* $(SDDIR); cp gmkin_screenshot.png $(SDDIR); cd $(SDDIR) && svn add --force . r-forge: sd move-sd cd $(RFSVN) && svn commit -m 'update gmkin static documentation from github repository' release: build cp $(TGZ) $(RFSVN)/www/repo/src/contrib; scp $(TGZ) qnap:projects/gmkin @echo Now build gmkin on windows and copy the zip to the repo clean: $(RM) -r $(PKGNAME).Rcheck/ $(RM) vignettes/*.R