8 lines
224 B
Makefile
8 lines
224 B
Makefile
|
main.pdf: main.tex refs.bib
|
||
|
pdflatex -interaction=nonstop -halt-on-error main.tex
|
||
|
bibtex main
|
||
|
pdflatex -interaction=nonstop -halt-on-error main.tex
|
||
|
|
||
|
clean:
|
||
|
rm *.bbl *.bcf *.blg *.log *.pdf *.run.xml *.toc *.aux *.out -f
|