diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-10-02 13:01:38 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-10-02 13:01:38 +0200 |
commit | a892d1dc3c2a3724063f4d671f7f261ff5392884 (patch) | |
tree | fc5ec66d22425cb71290122dd1979969f41da27e /GNUmakefile | |
parent | f908377f1de2e04ca3720d10084169c46a477ce2 (diff) |
Some maintenance work
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/GNUmakefile b/GNUmakefile index 5e8e5c1..333d0c6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -10,23 +10,19 @@ DATE := $(shell date +%Y-%m-%d) usage: @echo "Usage: make TARGET with TARGET being:" @echo "" - @echo " clean - Clean up." @echo " roxygen - Roxygenize." @echo " build - Build source package." - @echo " quickcheck - Run check on the package." - @echo " check - Run CRAN check on the package." + @echo " check - Run check on the package." + @echo " crancheck - Run CRAN check on the package." @echo " install - Install the package." pkgfiles = DESCRIPTION \ README.html \ R/* \ inst/examples/*.R \ - inst/staticdocs/index.r - -clean: - @echo "Cleaning up..." - rm -fR chents.Rcheck - @echo "DONE." + inst/staticdocs/index.r \ + tests/testthat.R \ + tests/testthat/* roxygen: @echo "Roxygenizing package..." |