]> git.llucax.com Git - z.facultad/75.42/calculadora.git/blobdiff - Makefile
Se hace una prueba del parser_equation() y se corrigen varios bugs.
[z.facultad/75.42/calculadora.git] / Makefile
index afa2713649f0c88e50d73923ced0f25803c3a7f5..98e04837af99fe72a2ec6996cada46361de83e49 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ CFLAGS=-ansi -pedantic -Wall -g3 -DDEBUG
 CC=gcc-3.2
 
 # Pruebas.
-TESTS=dllist_test memdebug_test
+TESTS=dllist_test memdebug_test parser_equation_test
 # Programa a compilar.
 TARGETS=$(TESTS)
 
@@ -34,6 +34,8 @@ dllist_test: dllist.o
 
 memdebug_test: dllist.o meminfo.o memdebug.o
 
+parser_equation_test: dllist.o parseerror.o equation.o parser_equation.o
+
 tp1: $(TARGETS)
 
 # Regla para borrar.