CC=gcc
OBJS=main.o funciones.o
EXE=T5_Ej2.exe

$(EXE):$(OBJS)
	$(CC) -o $@ $^
$(OBJS):cabecera.h
clean:
	rm -f *.o *~ $(EXE)