9 lines
111 B
Makefile
9 lines
111 B
Makefile
|
all: html pdf
|
||
|
|
||
|
html:
|
||
|
jupyter-book build .
|
||
|
pdf:
|
||
|
jupyter-book build --builder pdflatex .
|
||
|
clean:
|
||
|
rm -rf _build
|