diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2024-11-17 17:10:11 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2024-11-17 17:10:11 +0100 |
commit | 14195b510234fa4e350df6558fa1830aa9d226e6 (patch) | |
tree | 6f9a1792527f7a5316f9f8ae0d65ba9e997ed7c8 /GNUmakefile | |
parent | b1342627d7234b4133465355870462640cf23fea (diff) | |
parent | 74077191e562b9b2692e8342f8d190ec0be4431f (diff) |
Merge branch 'main' into pull_request
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index b7404b6..0c5a155 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -28,16 +28,19 @@ all: build $(TGZ): $(pkgfiles) vignettes "$(RBIN)/R" CMD build . 2>&1 | tee build.log -build: $(TGZ) +roxy: + Rscript -e "roxygen2::roxygenize(roclets = c('rd', 'collate', 'namespace'))" + +build: roxy $(TGZ) README.html: README.rmd "$(RBIN)/Rscript" -e "rmarkdown::render('README.rmd', clean = FALSE)" mv README.knit.md README.md -install: build +install: roxy build "$(RBIN)/R" CMD INSTALL $(TGZ) -check: build +check: roxy build "$(RBIN)/R" CMD check --as-cran $(TGZ) 2>&1 | tee check.log vignettes/%.html: vignettes/%.Rmd vignettes/refs.bib @@ -65,3 +68,6 @@ clean: $(RM) -r vignettes/*_files $(RM) -r vignettes/*.R $(RM) Rplots.pdf + + +.PHONY: roxy build install check pd winbuilder test clean |