Created
May 5, 2015 13:34
-
-
Save mcand/3f5cdb7e4df74977ce43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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