diff --git a/Makefile b/Makefile index e075fa0..e6d9458 100644 --- a/Makefile +++ b/Makefile @@ -12,4 +12,10 @@ sort: $(OBJ) clean: rm -f src/*.o sort -.PHONY: sort clean +informe: + make -C doc + +cleaninforme: + make -C doc clean + +.PHONY: sort clean informe cleaninforme diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..d42f3ee --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,7 @@ +informe: + pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex" + +clean: + rm *.log *.toc *.gz *.aux Informe.pdf + +.PHONY: informe clean