blob: 1dd3d7b6c66f352de30fb1a7cfd84818524158b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
MODULE_big = json
OBJS = json.o jsonpath.o json_io.o json_op.o util.o compat.o
DATA_built = json.sql
DATA = uninstall_json.sql
REGRESS = init json validate condense orig json_path json_get json_set array_to_json unicode
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/json
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
|