Fix a possibility of logical replication slot's restart_lsn going backwards.
[pgsql.git] / contrib / hstore / Makefile
blob48ee98f0d5c6f4ddb070586d458f84d4e22f6ae9
1 # contrib/hstore/Makefile
3 MODULE_big = hstore
4 OBJS = \
5 $(WIN32RES) \
6 hstore_compat.o \
7 hstore_gin.o \
8 hstore_gist.o \
9 hstore_io.o \
10 hstore_op.o \
11 hstore_subs.o
13 EXTENSION = hstore
14 DATA = hstore--1.4.sql \
15 hstore--1.7--1.8.sql \
16 hstore--1.6--1.7.sql \
17 hstore--1.5--1.6.sql \
18 hstore--1.4--1.5.sql \
19 hstore--1.3--1.4.sql hstore--1.2--1.3.sql \
20 hstore--1.1--1.2.sql
21 PGFILEDESC = "hstore - key/value pair data type"
23 HEADERS = hstore.h
25 REGRESS = hstore hstore_utf8
27 ifdef USE_PGXS
28 PG_CONFIG = pg_config
29 PGXS := $(shell $(PG_CONFIG) --pgxs)
30 include $(PGXS)
31 else
32 subdir = contrib/hstore
33 top_builddir = ../..
34 include $(top_builddir)/src/Makefile.global
35 include $(top_srcdir)/contrib/contrib-global.mk
36 endif