UniTO/tesi/Makefile

23 lines
510 B
Makefile
Raw Normal View History

2020-02-21 19:13:13 +01:00
SRC = tesi.tex
AUX = tesi.aux
2020-02-24 14:36:26 +01:00
DEL = tesi.aux tesi.bbl tesi.blg tesi.log tesi.out tesi_unicode.tex tesi.pdf tesi.tex texput.log
2020-02-21 19:13:13 +01:00
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 ==="
2020-03-12 12:20:07 +01:00
emacs -batch tesi_unicode.org -f org-latex-export-to-latex --kill
2020-02-24 14:36:26 +01:00
python3 conv.py tesi_unicode.tex tesi.tex
2020-02-17 17:31:11 +01:00
pdflatex $(SRC)
bibtex $(AUX)
pdflatex $(SRC)
pdflatex $(SRC)
@echo
@echo "=== All done. Generated $(NAME).pdf ==="
2020-02-24 14:36:26 +01:00
clean:
rm -f $(DEL)