# make pdf     -> compile the URTC 2026 QNM-resolvability draft
# make figures -> regenerate both figures from the frozen results/map.npz
# make map     -> recompute results/map.npz + summary.json (~2 min laptop)
# make all     -> map + figures + pdf
# make clean   -> remove LaTeX build junk

pdf:
	pdflatex -interaction=nonstopmode main.tex
	pdflatex -interaction=nonstopmode main.tex

figures:
	python3 scripts/make_figures.py

map:
	python3 scripts/compute_map.py

all: map figures pdf

clean:
	rm -f main.aux main.log main.out main.toc main.fls main.fdb_latexmk

.PHONY: pdf figures map all clean
