summaryrefslogtreecommitdiff
path: root/Makefile
blob: a9b86127b1a5109e8cff51e096f8aefd554456c4 (plain)
1
2
3
4
5
6
7
8
all: out/report.pdf

out/%.pdf: src/report/%.tex
	mkdir -p out
	pdflatex --output-directory=out $<

open: out/report.pdf
	zathura $< &