]> git.llucax.com Git - z.facultad/75.42/calculadora.git/blobdiff - Makefile
Se mejora la salida del memdebug y se hace que solo imprima la memoria alocada a
[z.facultad/75.42/calculadora.git] / Makefile
index ef58f640c8a5bafc46b1e0f2e7820b93363a75aa..afa2713649f0c88e50d73923ced0f25803c3a7f5 100644 (file)
--- a/Makefile
+++ b/Makefile
 #
 
 # Opciones para el compilador.
 #
 
 # Opciones para el compilador.
-CFLAGS=-ansi -pedantic -Wall -g3
+CFLAGS=-ansi -pedantic -Wall -g3 -DDEBUG
+CC=gcc-3.2
 
 
+# Pruebas.
+TESTS=dllist_test memdebug_test
 # Programa a compilar.
 # Programa a compilar.
-TARGETS=
+TARGETS=$(TESTS)
 
 # Regla por defecto.
 all: tp1
 
 
 # Regla por defecto.
 all: tp1
 
+# Pruebas.
+tests: $(TESTS)
+       ./dllist_test
+       ./memdebug_test
+
+dllist_test: dllist.o
+
+memdebug_test: dllist.o meminfo.o memdebug.o
+
 tp1: $(TARGETS)
 
 # Regla para borrar.
 tp1: $(TARGETS)
 
 # Regla para borrar.