diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2017-01-18 22:58:51 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2017-01-18 22:58:51 +0100 |
commit | cff68edc1ac113ac9e159dfdf7cfcbb6721ff2a7 (patch) | |
tree | 5ec379261c16fe22894c421fc6f90e50d4d3053a /GNUmakefile | |
parent | a76221d87485029444c8e684022ca606a0c7e68d (diff) |
Make README.md simple, and point to the reference
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/GNUmakefile b/GNUmakefile index f449880..25f9693 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -7,12 +7,10 @@ DATE := $(shell date +%Y-%m-%d) .PHONEY: usage check clean pkgfiles = DESCRIPTION \ - README.html \ .Rbuildignore \ inst/testdata/* \ - inst/staticdocs/index.r \ - tests/testthat.R \ - tests/testthat/* \ + docs/* \ + docs/reference/* \ data/* \ R/* @@ -41,11 +39,6 @@ $(TGZ): $(pkgfiles) "$(R_HOME)/bin/R" CMD build . > build.log 2>&1 @echo "DONE." -README.html: README.rmd - "$(R_HOME)/bin/Rscript" -e "rmarkdown::render('README.rmd', output_format = 'html_document', clean = FALSE)" - mv README.utf8.md README.md - rm README.knit.md - build: $(TGZ) test: build |