summaryrefslogtreecommitdiffstats
path: root/contrib/bloom/Makefile
blob: 6d7a612fe4be196d593642fe2447e88234a4f2b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# contrib/bloom/Makefile

MODULE_big = bloom
OBJS = \
	$(WIN32RES) \
	blcost.o \
	blinsert.o \
	blscan.o \
	blutils.o \
	blvacuum.o \
	blvalidate.o

EXTENSION = bloom
DATA = bloom--1.0.sql
PGFILEDESC = "bloom access method - signature file based index"

REGRESS = bloom

# Disable TAP tests for this module for now, as these are unstable on several
# buildfarm environments.
# TAP_TESTS = 1

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/bloom
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif