aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2014-01-22 10:46:44 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2014-01-22 10:46:44 +0100
commit9ef8537149a37ebef8a2a18232644202872bbe55 (patch)
tree066de4b62d6fa8078637fe23ae466fe0f525629e /GNUmakefile
parentaf4a101d2cca91598ec5d1dc297c31a75517b139 (diff)
parent8b94131388071980e62c17190eb4229e89975a0c (diff)
Merge branch 'master' of https://github.com/jranke/mkin
Conflicts: DESCRIPTION R/mkinfit.R
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile27
1 files changed, 22 insertions, 5 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 1c124b1..cf5c845 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -16,11 +16,16 @@ help:
@echo ""
@echo "Development Tasks"
@echo "-----------------"
- @echo " build Create the package"
- @echo " check Invoke build and then check the package"
- @echo " install Invoke build and then install the result"
- @echo " test Install a new copy of the package and run it "
- @echo " through the testsuite"
+ @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 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 "---------------"
@@ -47,14 +52,26 @@ 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
#------------------------------------------------------------------------------

Contact - Imprint