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

PROGRAMS = le_vetor fseek cp registro



all: $(PROGRAMS)

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