From b34525fbc2bbfba86aac79f81caabadc65cd664f Mon Sep 17 00:00:00 2001 From: Florents Tselai Date: Sat, 19 Aug 2023 19:56:02 +0300 Subject: [PATCH] Make pgvector headers available to others. (#233) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 09908b3..8069570 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ MODULE_big = vector DATA = $(wildcard sql/*--*.sql) OBJS = src/hnsw.o src/hnswbuild.o src/hnswinsert.o src/hnswscan.o src/hnswutils.o src/hnswvacuum.o src/ivfbuild.o src/ivfflat.o src/ivfinsert.o src/ivfkmeans.o src/ivfscan.o src/ivfutils.o src/ivfvacuum.o src/vector.o +HEADERS_vector = src/vector.h + TESTS = $(wildcard test/sql/*.sql) REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS)) REGRESS_OPTS = --inputdir=test --load-extension=vector