all: hw03list

hw03list: main.o
	g++ main.o -o hw03list
	
main.o: main.cc list.hh


clean: 
	rm -f *.o hw03list *~
	
