diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2024-11-17 17:09:33 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2024-11-17 17:09:33 +0100 |
commit | 74077191e562b9b2692e8342f8d190ec0be4431f (patch) | |
tree | f5640b3c1c11d7bee2acd94bcf89692d695cde4e | |
parent | afc256aa52f77e20e215e947d2aa061dccb682e5 (diff) |
Update Makefile, add roxy target
-rw-r--r-- | DESCRIPTION | 2 | ||||
-rw-r--r-- | GNUmakefile | 12 |
2 files changed, 10 insertions, 4 deletions
diff --git a/DESCRIPTION b/DESCRIPTION index ebb9a83..2b680b9 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -21,4 +21,4 @@ Encoding: UTF-8 BugReports: https://github.com/jranke/chemCal/issues URL: https://pkgdown.jrwb.de/chemCal/, https://cgit.jrwb.de/chemCal/about Roxygen: list(markdown = TRUE) -RoxygenNote: 7.1.2 +RoxygenNote: 7.3.2 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 |