prog: tree.o main.o
	gcc -g -Wall tree.o main.o -o prog
list.o: tree.c tree.h
	gcc -c -g tree.c
main.o: main.c tree.h
	gcc -c -g main.c
