Skip to content

Instantly share code, notes, and snippets.

@lcezermf
Forked from mcand/Makefile para LaTeX
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lcezermf/328d7015b3055330333b to your computer and use it in GitHub Desktop.
Save lcezermf/328d7015b3055330333b to your computer and use it in GitHub Desktop.
FILE = Monografia
.PHONY: default
default: main clean
#por clean acima
.PHONY: main
main:
pdflatex $(FILE).tex
bibtex $(FILE).aux
pdflatex $(FILE).tex
pdflatex $(FILE).tex
.PHONY: clean
clean:
rm -f *.aux **/*.aux *.bak *.bbl *.blg *.dvi *.ilg *.lof *.log *.lot *.nlo *.out *.toc
.PHONY: open
open: main clean
open $(FILE).pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment