X-Git-Url: https://git.llucax.com/z.facultad/75.42/euler.git/blobdiff_plain/5f15fe92bee9151812e6706342de15cdf7e91289..f45c9025a63f98f0404bce9e7de66961982bfa86:/Makefile diff --git a/Makefile b/Makefile index 8b49c86..29b24cc 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ tp1: $(TARGETS) # Regla para borrar. clean: @echo "Limpiando..." - @rm -fR $(TARGETS) *.o core tp1 corrida_*.txt html latex + @rm -fR $(TARGETS) *.o core tp1 corrida_*.txt html latex* *.ps *.pdf # Corridas. corrida_2.txt: tp1 @@ -51,7 +51,14 @@ corrida_2_20a0__150.txt: tp1 corridas: corrida_2.txt corrida_2_200__150.txt corrida_50_5000.txt \ corrida_2__200__150.txt corrida_2_20a0__150.txt +# Preety-printing del código fuente. +code.ps: general.h tipos.h carga.h carga.c calculo.h calculo.c grafico.h \ + grafico.c tp1.c + enscript -j -E -U2 -C --fancy-header=squeeze --color -pcode.ps \ + general.h tipos.h carga.h carga.c calculo.h calculo.c \ + grafico.h grafico.c tp1.c + # Informe. -informe: corridas +informe: corridas code.ps @doxygen @cd latex && make refman.pdf && cd ..