14 lines
291 B
Makefile
14 lines
291 B
Makefile
|
all: paper.pdf
|
||
|
|
||
|
images:
|
||
|
$(MAKE) -C img
|
||
|
|
||
|
paper.pdf: paper.tex images
|
||
|
pdflatex -synctex=1 -interaction=nonstopmode paper.tex
|
||
|
pdflatex -synctex=1 -interaction=nonstopmode paper.tex
|
||
|
|
||
|
clean:
|
||
|
rm -f *.toc *.aux *.bbl *.blg *.fls *.out *.log *.synctex.gz *.dot
|
||
|
rm -rf tmp
|
||
|
$(MAKE) -C img clean
|