X-Git-Url: https://git.llucax.com/z.facultad/75.42/calculadora.git/blobdiff_plain/427d564e4b10984a17ac0d95d18187e3d3a6f2e9..0030baf01844749eb88b276c6e8ce417cdd6914d:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index ef58f64..6fb57f7 100644 --- a/Makefile +++ b/Makefile @@ -14,15 +14,43 @@ # # 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 \ + parser_expression_test # Programa a compilar. -TARGETS= +TARGETS=$(TESTS) tp2 # Regla por defecto. -all: tp1 +all: $(TARGETS) -tp1: $(TARGETS) +# Pruebas. +tests: $(TESTS) + ./dllist_test + ./memdebug_test + ./parser_equation_test 'a = 40' + ./parser_variable_test 'a 40 -50 0.11' + ./parser_expression_test '(3 + (-a)) * 2' + +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 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 + +parser_expression_test: dllist.o strutil.o meminfo.o memdebug.o parseerror.o \ + parser_common.o variable.o variable_list.o parser_expression.o + +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: