15 lines
281 B
Makefile
15 lines
281 B
Makefile
![]() |
PDF_CMD=pdflatex -synctex=1 -interaction=nonstopmode
|
||
|
BIB_CMD=bibtex
|
||
|
|
||
|
all: Main.pdf
|
||
|
|
||
|
Main.pdf: clean
|
||
|
$(PDF_CMD) Main.tex
|
||
|
$(BIB_CMD) Main.aux
|
||
|
$(PDF_CMD) Main.tex
|
||
|
$(PDF_CMD) Main.tex
|
||
|
|
||
|
clean:
|
||
|
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl Main.pdf
|
||
|
|