blob: 073141fc1ebfc07c8bf8422aa81b740ee8b2b24a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
MODULE_big = json
OBJS = json.o json_io.o json_op.o compat.o
DATA_built = json.sql
DATA = uninstall_json.sql
REGRESS = init json validate condense json_stringify escape_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
|