X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=vector%2FMakefile;h=a3feec435d9f38d957cc082763f0d6ad8760801f;hb=48cdb87442b7b3f1cdde9c1710ed90ec773dce97;hp=76c8213c99a54b773f08a1e146608f3d92b3b27f;hpb=a0be49ff8fda77c328424c09d6d0ad4a9f7e8f66;p=rrq%2Frrqmisc.git diff --git a/vector/Makefile b/vector/Makefile index 76c8213..a3feec4 100644 --- a/vector/Makefile +++ b/vector/Makefile @@ -1,11 +1,22 @@ LIBRARY = libvector.a -LIBOBJS = vector.o hashvector.o fifovector.o +LIBOBJS = Vector.o HashVector.o +LIBOBJS += Tuple.o TupleSchema.o integeritem.o stringitem.o Binding.o +LIBOBJS += BindingTable.o Relation.o Query.o +LIBOBJS += AssignQuery.o RelationQuery.o +LIBOBJS += NotQuery.o AndQuery.o OrQuery.o +#LIBOBJS += View.o default: $(LIBRARY) all: default CFLAGS = -Wall -g -fmax-errors=1 -I. +LDLIBS = -lm + +%.h: + echo "#ifndef ${@:.h=_H}" > $@ + echo "#define ${@:.h=_H}" >> $@ + echo "#endif" >> $@ define STDCC .INTERMEDIATE: $1.o