indexDriver: chset.o queue.o bstree.o document.o indexDriver.o
	g++ chset.o queue.o bstree.o document.o \
	indexDriver.o -o indexDriver
chset.o: concglob.h chset.h chset.cpp
	g++ -c chset.cpp
queue.o: concglob.h queue.h queue.cpp
	g++ -c queue.cpp
bstree.o: queue.h bstree.h bstree.cpp
	g++ -c bstree.cpp
document.o: concglob.h document.h document.cpp
	g++ -c document.cpp
indexDriver.o: document.h
	g++ -c indexDriver.cpp
