Skip to content

Instantly share code, notes, and snippets.

@mcand
Created May 5, 2015 13:34
Show Gist options
  • Save mcand/3f5cdb7e4df74977ce43 to your computer and use it in GitHub Desktop.
Save mcand/3f5cdb7e4df74977ce43 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