1
1
mirror of https://github.com/foxsen/archbase.git synced 2026-02-03 02:14:40 +08:00
Files
archbase/Makefile
Zhang Fuxin e83f206b5d Add pdf/doc generate in the workflow
Initial try.
2021-10-31 11:36:58 +08:00

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