Skip to content

Commit

Permalink
Keep Makefile with NoSuggests snippets for info purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeleites committed May 1, 2024
1 parent d0bcc5b commit b9d0daa
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
build:
export R_LIBS_USER=~/R/x86_64-pc-linux-gnu-library/4.4:~/R/x86_64-pc-linux-gnu-library/suggested/; \
R CMD build --compact-vignettes="gs+qpdf" hyperSpec/

novignette:
R CMD build --no-build-vignettes hyperSpec/

checkLean:
export _R_CHECK_CRAN_INCOMING_=FALSE; \
export _R_CHECK_DEPENDS_ONLY_=TRUE; \
R --no-init-file CMD check --as-cran hyperSpec_0.100.2.tar.gz

checkFull:
export _R_CHECK_CRAN_INCOMING_=FALSE; \
R --no-init-file CMD check --as-cran hyperSpec_0.100.2.tar.gz

checkLeanDevel:
export _R_CHECK_CRAN_INCOMING_=FALSE; \
export _R_CHECK_DEPENDS_ONLY_=TRUE; \
~/R-devel/trunk/bin/R --no-init-file CMD check --as-cran hyperSpec_0.100.2.tar.gz

checkFullDevel:
export _R_CHECK_CRAN_INCOMING_=FALSE; \
~/R-devel/trunk/bin/R --no-init-file CMD check --as-cran hyperSpec_0.100.2.tar.gz

0 comments on commit b9d0daa

Please sign in to comment.