]> git.llucax.com Git - z.facultad/75.42/calculadora.git/blobdiff - Makefile
Se agrega una primera versiĆ³n (sin debuggear) del parser de variables. Se separan...
[z.facultad/75.42/calculadora.git] / Makefile
index f5a610a6b22ef7f79dd8e699fc3b7bdee3b28404..9b31f1509e81740485f672d5d21a3ccc0a6e54b8 100644 (file)
--- a/Makefile
+++ b/Makefile
 #
 
 # 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 parser_equation_test parser_variable_test
 # Programa a compilar.
-TARGETS=
+TARGETS=$(TESTS)
 
 # Regla por defecto.
 all: tp1
 
 # Pruebas.
-tests: dllist_test
+tests: $(TESTS)
        ./dllist_test
+       ./memdebug_test
+       ./parser_equation_test 'a = 40'
+       ./parser_variable_test 'a = 40'
 
 dllist_test: dllist.o
 
+memdebug_test: dllist.o meminfo.o memdebug.o
+
+parser_equation_test: dllist.o parseerror.o equation.o strutil.o parser_equation.o meminfo.o memdebug.o
+
+parser_variable_test: dllist.o parseerror.o variable.o strutil.o parser_variable.o meminfo.o memdebug.o
+
 tp1: $(TARGETS)
 
 # Regla para borrar.