aboutsummaryrefslogtreecommitdiff
path: root/Justfile
blob: 3b9db866adab51c05048645da9a2e4a6aaff1e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
default: build

build: thesis
clean: thesis-clean

alias t := thesis
thesis:
  cd thesis/; latexmk -bibtex -pdf

alias tw := thesis-watch
thesis-watch:
  cd thesis/; latexmk -bibtex -pdf -pvc

alias tc := thesis-clean
thesis-clean:
  cd thesis/; latexmk -c

run-all-tests:
  echo "TODO: run the tests!!"