Skip to content
Snippets Groups Projects
Commit f91dca1e authored by Juan Pablo Garcia Garland's avatar Juan Pablo Garcia Garland
Browse files

add Main+Makefile

parents
No related branches found
No related tags found
No related merge requests found
Main.pdf 0 → 100644
File added
Makefile 0 → 100644
TEX = pdflatex -shell-escape -interaction=nonstopmode -file-line-error
LHS2TEX = lhs2TeX
REPORTE = Main
.PHONY: all view
all : pdf view
view : Main.tex
evince Main.pdf&
pdf : Main.lhs
$(LHS2TEX) --verb $(REPORTE).lhs > $(REPORTE).tex
$(TEX) $(REPORTE).tex
pdflatex $(REPORTE).tex
bibtex $(REPORTE)
pdflatex $(REPORTE).tex
.PHONY: clean
clean:
rm -f *.log *.aux *~ *.pdf *bbl
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment