From fe79d435c0b45db1d7c9c0e9c7af9823f1790f1e Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 19 Aug 2023 09:58:25 -0700 Subject: [PATCH] Use HEADERS for simplicity [skip ci] --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8069570..c4c2fa4 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,7 @@ EXTVERSION = 0.4.4 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 +HEADERS = src/vector.h TESTS = $(wildcard test/sql/*.sql) REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))