2010-09-21 00:08:53 +04:00
|
|
|
# contrib/auto_explain/Makefile
|
2008-11-19 05:59:28 +03:00
|
|
|
|
|
|
|
MODULE_big = auto_explain
|
2019-11-06 01:41:07 +03:00
|
|
|
OBJS = \
|
|
|
|
$(WIN32RES) \
|
|
|
|
auto_explain.o
|
2014-07-14 22:07:52 +04:00
|
|
|
PGFILEDESC = "auto_explain - logging facility for execution plans"
|
2008-11-19 05:59:28 +03:00
|
|
|
|
2021-01-24 22:59:33 +03:00
|
|
|
TAP_TESTS = 1
|
|
|
|
|
2008-11-19 05:59:28 +03:00
|
|
|
ifdef USE_PGXS
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/auto_explain
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|