2010-09-20 16:08:53 -04:00
|
|
|
# contrib/pg_buffercache/Makefile
|
2005-03-12 10:36:24 -05:00
|
|
|
|
|
|
|
|
MODULE_big = pg_buffercache
|
2019-11-05 17:41:07 -05:00
|
|
|
OBJS = \
|
|
|
|
|
$(WIN32RES) \
|
|
|
|
|
pg_buffercache_pages.o
|
2005-03-12 10:36:24 -05:00
|
|
|
|
2011-02-13 20:06:41 -05:00
|
|
|
EXTENSION = pg_buffercache
|
2022-09-28 09:45:27 -04:00
|
|
|
DATA = pg_buffercache--1.2.sql pg_buffercache--1.2--1.3.sql \
|
2022-10-13 12:55:46 -04:00
|
|
|
pg_buffercache--1.1--1.2.sql pg_buffercache--1.0--1.1.sql \
|
|
|
|
|
pg_buffercache--1.3--1.4.sql
|
2014-07-14 14:07:52 -04:00
|
|
|
PGFILEDESC = "pg_buffercache - monitoring of shared buffer cache in real-time"
|
2005-03-12 10:36:24 -05:00
|
|
|
|
2022-07-30 15:33:44 -04:00
|
|
|
REGRESS = pg_buffercache
|
|
|
|
|
|
2005-03-12 10:36:24 -05:00
|
|
|
ifdef USE_PGXS
|
2007-06-26 18:05:04 -04:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2005-03-12 10:36:24 -05:00
|
|
|
include $(PGXS)
|
|
|
|
|
else
|
|
|
|
|
subdir = contrib/pg_buffercache
|
|
|
|
|
top_builddir = ../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
|
endif
|