options =	$(PFLOPT) -v
headers =	../header.h  ../aux/field.h tc/tc.h df/df.h hf/hf.h db.h
auxiliary =	../aux/check.o hf/hf.o df/df.o tc/tc.o

db.o:		Makefile $(headers) db.C
		g++ -c $(options) db.C

Example:	Makefile $(headers) Example.C
		g++ $(options) -o Example Example.C -x none $(auxiliary) db.o
		mkdir data
		mkdir data/curr
		mkdir data/prev
		time Example
		rm -r data

Example.o:	Makefile $(headers) Example.C
		g++ $(options) -o -llibmdb Example Example.C
