diff options
Diffstat (limited to 'Justfile')
-rw-r--r-- | Justfile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..6a36f5f --- /dev/null +++ b/Justfile @@ -0,0 +1,16 @@ +default: build + +build: thesis +clean: thesis-clean + +alias t := thesis +thesis: + cd thesis/; latexmk -pdf + +alias tw := thesis-watch +thesis-watch: + cd thesis/; latexmk -pdf -pvc + +alias tc := thesis-clean +thesis-clean: + cd thesis/; latexmk -c
\ No newline at end of file |