CC=gcc
CFLAGS=-std=c99 -g3 -Wall -pedantic

all: tree

test: all
	./tree

clean:
	$(RM) tree *.o
