CC = gcc
CFLAGS = -g
LDFLAGS = -lm

PROGRAMS = limites notas poli deriv str busca balanc

all: $(PROGRAMS)

clean:
	rm -f *.o *~ $(PROGRAMS)