18 lines
331 B
Makefile
18 lines
331 B
Makefile
|
SRC = tesi.tex
|
||
|
AUX = tesi.aux
|
||
|
DEL = tesi.aux tesi.bbl tesi.blg tesi.log tesi.out
|
||
|
NAME = tesi
|
||
|
|
||
|
tesi:
|
||
|
@echo
|
||
|
@echo "=== Removing temporary files ==="
|
||
|
rm -f $(DEL)
|
||
|
@echo
|
||
|
@echo "=== Building from scratch ==="
|
||
|
pdflatex $(SRC)
|
||
|
bibtex $(AUX)
|
||
|
pdflatex $(SRC)
|
||
|
pdflatex $(SRC)
|
||
|
@echo
|
||
|
@echo "=== All done. Generated $(NAME).pdf ==="
|