X-Git-Url: https://git.llucax.com/z.facultad/75.42/calculadora.git/blobdiff_plain/c57495a01a44c4401340183e8773df2db62401b4..0030baf01844749eb88b276c6e8ce417cdd6914d:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index f860561..6fb57f7 100644 --- a/Makefile +++ b/Makefile @@ -21,10 +21,10 @@ CC=gcc-3.2 TESTS=dllist_test memdebug_test parser_equation_test parser_variable_test \ parser_expression_test # Programa a compilar. -TARGETS=$(TESTS) +TARGETS=$(TESTS) tp2 # Regla por defecto. -all: tp1 +all: $(TARGETS) # Pruebas. tests: $(TESTS) @@ -39,7 +39,8 @@ dllist_test: dllist.o memdebug_test: dllist.o meminfo.o memdebug.o parser_equation_test: dllist.o strutil.o meminfo.o memdebug.o parseerror.o \ - parser_common.o equation.o parser_equation.o + parser_common.o equation.o equation_list.o variable.o variable_list.o \ + parser_equation.o parser_expression.o parser_variable_test: dllist.o strutil.o meminfo.o memdebug.o parseerror.o \ parser_common.o variable.o variable_list.o parser_variable.o @@ -47,7 +48,9 @@ parser_variable_test: dllist.o strutil.o meminfo.o memdebug.o parseerror.o \ parser_expression_test: dllist.o strutil.o meminfo.o memdebug.o parseerror.o \ parser_common.o variable.o variable_list.o parser_expression.o -tp1: $(TARGETS) +tp2: dllist.o strutil.o meminfo.o memdebug.o parseerror.o parser_common.o \ + variable.o variable_list.o parser_expression.o variable_list.o \ + parser_variable.o equation.o equation_list.o parser_equation.o # Regla para borrar. clean: