add doxygen docs

This commit is contained in:
2021-07-26 02:47:25 -04:00
parent 9ab95c799e
commit 6aca7ae42e
23 changed files with 2728 additions and 9 deletions

16
report/Makefile Normal file
View File

@@ -0,0 +1,16 @@
all: report
report:
# we do this twice to make sure the toc is updated
pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex"
pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex"
clean:
rm -f Informe.pdf
find . -type f -name '*.log' -exec rm {} +
find . -type f -name '*.toc' -exec rm {} +
find . -type f -name '*.gz' -exec rm {} +
find . -type f -name '*.aux' -exec rm {} +
find . -type f -name '*.out' -exec rm {} +
.PHONY: all report clean