CC = gcc CFLAGS = -g -Wall LDFLAGS = -lm PROGRAMS = busca-bin intercala mergesort quicksort all: $(PROGRAMS) clean: rm -f *.o *~ $(PROGRAMS)