2010-09-20 22:08:53 +02:00
|
|
|
# contrib/auto_explain/Makefile
|
2008-11-19 02:59:28 +00:00
|
|
|
|
|
|
|
MODULE_big = auto_explain
|
2019-11-05 14:41:07 -08:00
|
|
|
OBJS = \
|
|
|
|
$(WIN32RES) \
|
|
|
|
auto_explain.o
|
2014-07-14 14:07:52 -04:00
|
|
|
PGFILEDESC = "auto_explain - logging facility for execution plans"
|
2008-11-19 02:59:28 +00:00
|
|
|
|
2021-01-24 14:59:33 -05:00
|
|
|
TAP_TESTS = 1
|
|
|
|
|
2008-11-19 02:59:28 +00: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
|