21 lines
520 B
Makefile
21 lines
520 B
Makefile
|
SRC = 4.tex
|
||
|
AUX = 4.aux
|
||
|
DEL = 4.aux 4.bbl 4.blg 4.log 4.out 4_unicode.tex 4.pdf 4.tex texput.log 4.aux 4.out 4.toc 4.log 4.tex 4.toc 4.tex 4.tex 4.accenti.org
|
||
|
NAME =
|
||
|
|
||
|
tesi:
|
||
|
@echo
|
||
|
@echo "=== Removing temporary files ==="
|
||
|
rm -f $(DEL)
|
||
|
@echo
|
||
|
@echo "=== Building from scratch ==="
|
||
|
accenti 4.org > 4.accenti.org
|
||
|
emacs -batch 4.accenti.org -f org-latex-export-to-latex --kill
|
||
|
python3 ../conv/conv.py 4.accenti.tex $(SRC)
|
||
|
pdflatex $(SRC)
|
||
|
@echo
|
||
|
@echo "=== All done. Generated $(NAME).pdf ==="
|
||
|
|
||
|
clean:
|
||
|
rm -f $(DEL)
|