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