-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep Makefile with NoSuggests snippets for info purposes
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |