forked from sandrooliveira1501/template-tcc1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
25 lines (21 loc) · 878 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
filename=TCC
all: compile
compile:
@echo "*********************************************************"
@echo "* *"
@echo "* Package 'ufcTeX2' Release 1.0 -- 20 de Julho 2016 *"
@echo "* *"
@echo "*********************************************************"
@echo "Compilando..."
pdflatex $(filename).tex
bibtex $(filename)
#makeglossaries $(filename)
#makeindex $(filename)
pdflatex $(filename).tex
pdflatex $(filename).tex
@echo "Processo finalizado com sucesso!"
clean:
@echo -n "Limpando arquivos auxiliares...\n"
@rm -f *.out *.aux *.alg *.acr *.dvi *.gls *.log *.bbl *.blg *.ntn *.not *.lof *.lot *.toc *.loa *.lsg *.nlo *.nls *.ilg *.ind *.ist *.glg *.glo *.xdy *.acn *.idx *.loq *~
@rm -f $(filename).pdf
@echo "Processo finalizado com sucesso!"