X-Git-Url: https://git.llucax.com/z.facultad/75.42/euler.git/blobdiff_plain/6421e2ce5265f896509a311624e39ebaf674c1af..19116a8d2d980cb15cdc4d375fc83b2ab7107228:/Makefile diff --git a/Makefile b/Makefile index 7b3ae04..99dc813 100644 --- a/Makefile +++ b/Makefile @@ -44,14 +44,21 @@ corrida_50_5000.txt: tp1 corrida_2__200__150.txt: tp1 @(./tp1 2 -200 -150 2> corrida_2__200__150.txt) || true -corrida_0_10.txt: tp1 - @(./tp1 0 10 2> corrida_0_10.txt) || true +corrida_2_20a0__150.txt: tp1 + @(./tp1 2 20a0 -150 2> corrida_2_20a0__150.txt) || true # Crea todas las corridas. corridas: corrida_2.txt corrida_2_200__150.txt corrida_50_5000.txt \ - corrida_2__200__150.txt corrida_0_10.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 ..