Added Query functions. Major renaming of stuff to use camelcase type names.
[rrq/rrqmisc.git] / vector / Makefile
index f8b05a7fd908a4292a30613b1aada6ae61b2a847..0f342d35332e604ac4ff10a76363abe10335ad92 100644 (file)
@@ -1,14 +1,15 @@
 LIBRARY = libvector.a
-LIBOBJS = vector.o hashvector.o
-
-# This is overridable on command line
-VECTOR_LEVEL_BITS = 4
+LIBOBJS = Vector.o HashVector.o
+LIBOBJS += TupleSchema.o integeritem.o  stringitem.o
+LIBOBJS += Relation.o
+LIBOBJS += BindingTable.o Query.o
 
 default: $(LIBRARY)
 
 all: default
 
-CFLAGS = -Wall -g -fmax-errors=1 -DVECTOR_LEVEL_BITS=$(VECTOR_LEVEL_BITS)
+CFLAGS = -Wall -g -fmax-errors=1 -I.
+LDLIBS = -lm
 
 define STDCC
 .INTERMEDIATE: $1.o