all: 
	gcc -Wall -c lab4.c
	gcc -Wall -c tree.c 
	gcc -o lab4 lab4.o tree.o

clean:
	rm -f lab4.o tree.o lab4
