CC=gcc
TARGETS=comp
CFLAGS= -lm -g

comp: principal.o cola.o
	$(CC) $(CFLAGS) -o $(@) $(^)
		
clean:
	rm -fv *.o *~ $(TARGETS)
test:
	./comp
