tfm-report/Makefile

16 lines
365 B
Makefile
Raw Normal View History

2019-10-18 10:54:33 +02:00
all: paper.pdf
images:
$(MAKE) -C img
paper.pdf: paper.tex images
2019-10-18 16:33:52 +02:00
pdflatex -synctex=1 -interaction=nonstopmode paper.tex
bibtex paper.aux
2019-10-18 10:54:33 +02:00
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