Skip to content
Snippets Groups Projects
Commit e0a28136 authored by Carlos Maziero's avatar Carlos Maziero
Browse files

ajustes no Makefile

parent 0eb51b00
No related branches found
No related tags found
No related merge requests found
# Makefile básico, sugestões são bem-vindas...
# Carlos Maziero @UFPR, nov 2015
# Carlos Maziero @UFPR, out 2017
MAIN=main
OUTPUT=$(MAIN)_$(USER).pdf # a pedido da coordenacao
main: $(MAIN).tex
@pdflatex $(MAIN)
@bibtex $(MAIN)
@pdflatex $(MAIN)
@pdflatex $(MAIN)
@mv $(MAIN).pdf $(MAIN)_$(USER).pdf # a pedido da coordenação
@mv $(MAIN).pdf $(OUTPUT)
bib:
@bibtex $(MAIN)
......@@ -26,5 +27,5 @@ clean:
@find . -xdev -name $(MAIN).blg -print -delete
purge: clean
@rm -f $(MAIN)_$(USER).pdf
@rm -f $(OUTPUT)
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment