X-Git-Url: https://git.llucax.com/z.facultad/75.42/calculadora.git/blobdiff_plain/f7547b1b03c5f2554012658ef7aeafee91c7227c..5fc156b9719666605c58ee239a6d0a2c16843d09:/Makefile diff --git a/Makefile b/Makefile index f5a610a..afa2713 100644 --- a/Makefile +++ b/Makefile @@ -14,20 +14,26 @@ # # 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. -TARGETS= +TARGETS=$(TESTS) # Regla por defecto. all: tp1 # Pruebas. -tests: dllist_test +tests: $(TESTS) ./dllist_test + ./memdebug_test dllist_test: dllist.o +memdebug_test: dllist.o meminfo.o memdebug.o + tp1: $(TARGETS) # Regla para borrar.