
all: main.c list.o
	gcc list.o main.c 

list.o: list.c list.h
	gcc -c list.c

clean: 
	rm -f *.o *~ a.out

