diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..64c930f5eee47bc5f182fc8dadb4813a1352b569 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +run: + jupyter notebook +rebuild: + ./gradlew shadowJar +install: + ./gradlew installKernelSpec + +NOTEBOOKS = notebooks/tutorials/prob_solver_intro.ipynb \ + notebooks/manual/ExternalFunctions.ipynb +latex: + for spec in $(NOTEBOOKS); do \ + echo 'Generating Latex for: '; echo $$spec ; \ + jupyter nbconvert $$spec --to latex ; \ + done + echo "done" \ No newline at end of file