DEBUG = -DDEBUG -g
CFLAGS = -O3 -pipe -Wall

all: test btree

.c.o: 
	gcc -c ${DEBUG} $<

test: test.o 
	gcc -o test test.o

btree: btree.o
	gcc -o btree btree.o 

clean: 
	rm test.o btree.o btree test test.idx
