CC = gcc
CFLAGS = -g -Wall
LDFLAGS = -lm

PROGRAMS = vetor copiar fseek registro



all: $(PROGRAMS)

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