2020-02-21 19:13:13 +01:00
|
|
|
SRC = tesi.tex
|
|
|
|
AUX = tesi.aux
|
|
|
|
DEL = tesi.aux tesi.bbl tesi.blg tesi.log tesi.out
|
|
|
|
NAME = tesi
|
2020-02-17 17:31:11 +01:00
|
|
|
|
2020-02-21 19:13:13 +01:00
|
|
|
tesi:
|
2020-02-17 17:31:11 +01:00
|
|
|
@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 ==="
|