17 lines
311 B
Makefile
Executable File
17 lines
311 B
Makefile
Executable File
.PHONY: all clean cleanall
|
|
|
|
all: documento.pdf
|
|
|
|
documento.pdf: documento.tex bibliografia.bib
|
|
pdflatex documento.tex
|
|
biber documento
|
|
pdflatex documento.tex
|
|
pdflatex documento.tex
|
|
|
|
clean:
|
|
rm -f *.aux *.blg *.bbl *.toc *.log *.lof *.lot *.log.xml *.bcf *.out *.run.xml
|
|
|
|
cleanall: clean
|
|
rm -f documento.pdf
|
|
|