diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-05-07 14:47:28 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-05-07 14:47:28 +0200 |
commit | e959fde98f95f3595e01490b67892678bbcd1b27 (patch) | |
tree | 992c56223a31c6937091dd5f9eeef63c2dd9e579 /GNUmakefile | |
parent | d846ac7691ab648afbb5a98bbca91911396a95bf (diff) |
Fork the gmkin GUI from mkin. See ChangeLog for details
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 52 |
1 files changed, 1 insertions, 51 deletions
diff --git a/GNUmakefile b/GNUmakefile index 4511b07..7466d85 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -17,25 +17,10 @@ help: @echo "Development Tasks" @echo "-----------------" @echo " build Create the package" - @echo " build-no-vignettes Create the package without rebuilding vignettes" @echo " check Invoke build and then check the package" - @echo " check-no-vignettes Invoke build without rebuilding vignettes, and then check" @echo " install Invoke build and then install the result" - @echo " install-no-vignettes Invoke build without rebuilding vignettes and then install the result" - @echo " test Install a new copy of the package and run it " - @echo " through the testsuite" - @echo " test-no-vignettes Invoke build without rebuilding vignettes, and then run it" - @echo " through the testsuite" - @echo "" - @echo "Packaging Tasks" - @echo "---------------" - @echo " release Give some reminders" - @echo "" - @echo "Using R in: $(RBIN)" - @echo "Set the RBIN environment variable to change this." @echo "" - #------------------------------------------------------------------------------ # Development Tasks #------------------------------------------------------------------------------ @@ -44,45 +29,10 @@ build: cd ..;\ "$(RBIN)/R" CMD build $(PKGSRC) -build-no-vignettes: - cd ..;\ - "$(RBIN)/R" CMD build $(PKGSRC) --no-build-vignettes - install: build cd ..;\ "$(RBIN)/R" CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz -install-no-vignettes: build-no-vignettes - cd ..;\ - "$(RBIN)/R" CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz - check: build cd ..;\ - "$(RBIN)/R" CMD check --as-cran --no-tests $(PKGNAME)_$(PKGVERS).tar.gz - -check-no-vignettes: build-no-vignettes - cd ..;\ - "$(RBIN)/R" CMD check --as-cran --no-tests $(PKGNAME)_$(PKGVERS).tar.gz - -test: install - cd tests;\ - "$(RBIN)/Rscript" doRUnit.R - -test-no-vignettes: install-no-vignettes - cd tests;\ - "$(RBIN)/Rscript" doRUnit.R - -#------------------------------------------------------------------------------ -# Packaging Tasks -#------------------------------------------------------------------------------ -release: - @echo "\nHow about make test and make check?" - @echo "\nIs the DESCRIPTION file up to date?" - @echo "\nTo update the svn repository tied to the local r-forge branch with" - @echo "changes in the local master branch, run:" - @echo "'git checkout r-forge'" - @echo "'git merge --squash master'" - @echo "'git commit'" - @echo "'git svn dcommit'" - @echo "\nThen change back to the master branch:" - @echo "'git checkout master'" + "$(RBIN)/R" CMD check --as-cran $(PKGNAME)_$(PKGVERS).tar.gz |