aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2024-11-17 17:09:33 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2024-11-17 17:09:33 +0100
commit74077191e562b9b2692e8342f8d190ec0be4431f (patch)
treef5640b3c1c11d7bee2acd94bcf89692d695cde4e /GNUmakefile
parentafc256aa52f77e20e215e947d2aa061dccb682e5 (diff)
Update Makefile, add roxy target
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile12
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

Contact - Imprint