X-Git-Url: https://git.llucax.com/z.facultad/75.42/string.git/blobdiff_plain/6433cf237a213c6ba195e534da110733de9b4716..refs/heads/master:/Makefile diff --git a/Makefile b/Makefile index 08ee0b6..7000842 100644 --- a/Makefile +++ b/Makefile @@ -14,11 +14,12 @@ # # Opciones para el compilador. -#CXXFLAGS=-ansi -pedantic -Wall -O3 -CXXFLAGS=-ansi -pedantic -Wall -g3 -DDEBUG +CXXFLAGS=-ansi -pedantic -Wall -O3 +#CXXFLAGS=-ansi -pedantic -Wall -g3 +#CXXFLAGS=-ansi -pedantic -Wall -g3 -DDEBUG # Pruebas. -TESTS= +TESTS=universalstring_test # Programa a compilar. TARGETS=$(TESTS) tp4 @@ -33,11 +34,9 @@ ascii.o: ascii.cpp ascii.h unicode.o: unicode.cpp unicode.h -#quicksort.o: quicksort.cpp quicksort.h +universalstring_test: ascii.o unicode.o universalstring_test.cpp -#universalstring.o: universalstring.h universalstring.cpp - -universalstring: ascii.o unicode.o universalstring.cpp +tp4: ascii.o unicode.o tp4.cpp # Regla para borrar. @@ -47,13 +46,13 @@ clean: # Preety-printing del código fuente. FUENTES=ascii.h ascii.cpp unicode.h unicode.cpp universalstring.h \ - quicksort.h quicksort.cpp + quicksort.h tp4.cpp code.ps: $(FUENTES) @enscript -j -Ecpp -U2 -C --fancy-header=squeeze --color -pcode.ps \ $(FUENTES) # Informe. -informe: code.ps corrida.txt +informe: code.ps @doxygen @cd latex && make refman.pdf && cd .. @doxygen Doxyfile.imprimible