tubslatex-nix/template/Makefile
2023-04-15 16:49:06 +02:00

15 lines
268 B
Makefile

.PHONY: thesis.pdf all watch clean
all: thesis.pdf
clean:
latexmk -C thesis.tex
thesis.pdf: thesis.tex
latexmk -interaction=batchmode -pdf thesis.tex
watch:
while true; do \
inotifywait -qr -e modify -e create -e delete -e move *tex; \
$(MAKE); \
done