2010-09-21 00:08:53 +04:00
|
|
|
# contrib/pg_buffercache/Makefile
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
MODULE_big = pg_buffercache
|
2014-07-14 22:07:52 +04:00
|
|
|
OBJS = pg_buffercache_pages.o $(WIN32RES)
|
2005-03-12 18:36:24 +03:00
|
|
|
|
2011-02-14 04:06:41 +03:00
|
|
|
EXTENSION = pg_buffercache
|
2017-03-30 21:18:53 +03:00
|
|
|
DATA = pg_buffercache--1.2.sql pg_buffercache--1.2--1.3.sql \
|
|
|
|
pg_buffercache--1.1--1.2.sql pg_buffercache--1.0--1.1.sql \
|
|
|
|
pg_buffercache--unpackaged--1.0.sql
|
2014-07-14 22:07:52 +04:00
|
|
|
PGFILEDESC = "pg_buffercache - monitoring of shared buffer cache in real-time"
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
ifdef USE_PGXS
|
2007-06-27 02:05:04 +04:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2005-03-12 18:36:24 +03:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/pg_buffercache
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|