Fix minor nbtree page deletion buffer lock issue.
[pgsql.git] / contrib / bloom / Makefile
blob6d7a612fe4be196d593642fe2447e88234a4f2b4
1 # contrib/bloom/Makefile
3 MODULE_big = bloom
4 OBJS = \
5 $(WIN32RES) \
6 blcost.o \
7 blinsert.o \
8 blscan.o \
9 blutils.o \
10 blvacuum.o \
11 blvalidate.o
13 EXTENSION = bloom
14 DATA = bloom--1.0.sql
15 PGFILEDESC = "bloom access method - signature file based index"
17 REGRESS = bloom
19 # Disable TAP tests for this module for now, as these are unstable on several
20 # buildfarm environments.
21 # TAP_TESTS = 1
23 ifdef USE_PGXS
24 PG_CONFIG = pg_config
25 PGXS := $(shell $(PG_CONFIG) --pgxs)
26 include $(PGXS)
27 else
28 subdir = contrib/bloom
29 top_builddir = ../..
30 include $(top_builddir)/src/Makefile.global
31 include $(top_srcdir)/contrib/contrib-global.mk
32 endif