OBJS = main 

all:: ${OBJS}

main: list.o


clean:
	rm -f ${OBJS} *.o core

list.o: list.h
