]> granicus.if.org Git - postgresql/blob - contrib/intarray/Makefile
Add selectivity estimation functions for intarray operators.
[postgresql] / contrib / intarray / Makefile
1 # contrib/intarray/Makefile
2
3 MODULE_big = _int
4 OBJS = _int_bool.o _int_gist.o _int_op.o _int_tool.o \
5         _intbig_gist.o _int_gin.o _int_selfuncs.o $(WIN32RES)
6
7 EXTENSION = intarray
8 DATA = intarray--1.1.sql intarray--1.0--1.1.sql intarray--unpackaged--1.0.sql
9 PGFILEDESC = "intarray - functions and operators for arrays of integers"
10
11 REGRESS = _int
12
13 ifdef USE_PGXS
14 PG_CONFIG = pg_config
15 PGXS := $(shell $(PG_CONFIG) --pgxs)
16 include $(PGXS)
17 else
18 subdir = contrib/intarray
19 top_builddir = ../..
20 include $(top_builddir)/src/Makefile.global
21 include $(top_srcdir)/contrib/contrib-global.mk
22 endif