mirror of
https://github.com/foxsen/archbase.git
synced 2026-02-03 02:14:40 +08:00
18 lines
319 B
Makefile
18 lines
319 B
Makefile
all: html pdf doc
|
|
echo "done"
|
|
|
|
html:
|
|
Rscript -e 'bookdown::render_book()'
|
|
|
|
pdf:
|
|
Rscript -e 'bookdown::render_book("index.Rmd", "bookdown::pdf_book")'
|
|
|
|
doc:
|
|
Rscript -e 'bookdown::render_book("index.Rmd", "bookdown::word_document2")'
|
|
|
|
serve:
|
|
Rscript -e 'bookdown::serve_book()'
|
|
|
|
clean:
|
|
rm -rf _book _bookdown_files
|