]> git.donarmstrong.com Git - r/CairoHacks.git/blob - Makefile
add build rule to makefile
[r/CairoHacks.git] / Makefile
1 #!/usr/bin/make -f
2
3 R ?= R
4 ROPTS=-q --no-save --no-restore-data
5
6 build:
7         $(R) CMD build .
8
9 update_docs:
10         $(R) $(ROPTS) -e "devtools::document()"
11
12 check:
13         $(R) $(ROPTS) -e "devtools::check(manual=TRUE)"