Adds makefile

This commit is contained in:
Jonathan Hodgson 2022-07-04 19:50:08 +01:00
parent 53001e8097
commit 7a0188d904

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
.PHONY: clean
%.pdf: %.tex
latexmk -pdf $<
latexmk -c $<
%.png: %.pdf
convert -density 500 $< $@
clean:
rm *.log *.aux || true
clean-all: clean
rm *.pdf *.png || true