diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:19:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:19:15 +0000 |
commit | 6eb9c5a5657d1fe77b55cc261450f3538d35a94d (patch) | |
tree | 657d8194422a5daccecfd42d654b8a245ef7b4c8 /contrib/hstore/Makefile | |
parent | Initial commit. (diff) | |
download | postgresql-13-6eb9c5a5657d1fe77b55cc261450f3538d35a94d.tar.xz postgresql-13-6eb9c5a5657d1fe77b55cc261450f3538d35a94d.zip |
Adding upstream version 13.4.upstream/13.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/hstore/Makefile')
-rw-r--r-- | contrib/hstore/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/hstore/Makefile b/contrib/hstore/Makefile new file mode 100644 index 0000000..872ca03 --- /dev/null +++ b/contrib/hstore/Makefile @@ -0,0 +1,34 @@ +# contrib/hstore/Makefile + +MODULE_big = hstore +OBJS = \ + $(WIN32RES) \ + hstore_compat.o \ + hstore_gin.o \ + hstore_gist.o \ + hstore_io.o \ + hstore_op.o + +EXTENSION = hstore +DATA = hstore--1.4.sql \ + hstore--1.6--1.7.sql \ + hstore--1.5--1.6.sql \ + hstore--1.4--1.5.sql \ + hstore--1.3--1.4.sql hstore--1.2--1.3.sql \ + hstore--1.1--1.2.sql hstore--1.0--1.1.sql +PGFILEDESC = "hstore - key/value pair data type" + +HEADERS = hstore.h + +REGRESS = hstore + +ifdef USE_PGXS +PG_CONFIG = pg_config +PGXS := $(shell $(PG_CONFIG) --pgxs) +include $(PGXS) +else +subdir = contrib/hstore +top_builddir = ../.. +include $(top_builddir)/src/Makefile.global +include $(top_srcdir)/contrib/contrib-global.mk +endif |