Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit efea30e

Browse files
author
Nikita Glukhov
committed
Add contrib/jsonpathx
1 parent feb6aa8 commit efea30e

File tree

8 files changed

+1969
-0
lines changed

8 files changed

+1969
-0
lines changed

contrib/jsonpathx/Makefile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# contrib/jsonpathx/Makefile
2+
3+
MODULE_big = jsonpathx
4+
OBJS = jsonpathx.o
5+
6+
EXTENSION = jsonpathx
7+
DATA = jsonpathx--1.0.sql
8+
PGFILEDESC = "jsonpathx - extended JSON path item methods"
9+
10+
REGRESS = jsonpathx_jsonb jsonpathx_json
11+
12+
ifdef USE_PGXS
13+
PG_CONFIG = pg_config
14+
PGXS := $(shell $(PG_CONFIG) --pgxs)
15+
include $(PGXS)
16+
else
17+
subdir = contrib/jsonpathx
18+
top_builddir = ../..
19+
include $(top_builddir)/src/Makefile.global
20+
include $(top_srcdir)/contrib/contrib-global.mk
21+
endif
22+

0 commit comments

Comments
 (0)