
all: octree

CXXFLAGS = -Wall -W -g -O9

octree: octree.o
	g++ $^ -o $@ -lglut

clean:
	@rm -f *o *~ octree

