Adds makefile
This commit is contained in:
parent
53001e8097
commit
7a0188d904
1 changed files with 14 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue