diff options
author | Guillermo Ramos | 2015-06-25 03:43:27 +0200 |
---|---|---|
committer | Guillermo Ramos | 2015-06-25 03:43:27 +0200 |
commit | 3d916d10b90ce767b562cc7812a59acbd90a64af (patch) | |
tree | c63eb6eba3ebc1c1cf7479e252ffbb3de6ab8a6f /Makefile | |
download | tfm-3d916d10b90ce767b562cc7812a59acbd90a64af.tar.gz |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..caaeec1 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: + latexmk -shell-escape -pvc --pdf -interaction=nonstopmode memoria.tex + +bare: + pdflatex -shell-escape memoria.tex + +clean: + rm -rf _region_.tex *.aux *.bbl *.blg *.brf *.dvi *.fdb_latexmk *.fls *.fmt *.idx *.log *.lol *.out *.prv *.toc + +.PHONY : all clean |