1MODULES = pgpool-regclass
2DATA_built = pgpool-regclass.sql
3DATA = uninstall_pgpool-regclass.sql
4
5EXTENSION = pgpool_regclass
6DATA = pgpool_regclass--1.0.sql
7
8# if you are using PostgreSQL 8.0 or later,
9# using pg_config is recommended.
10# if you are not, comment out following line and...
11USE_PGXS = true
12# set top_builddir to the PostgreSQL build source tree top.
13# (for example /usr/local/src/postgresql-8.4)
14top_builddir = ../..
15
16ifdef USE_PGXS
17PG_CONFIG ?= pg_config
18PGXS = $(shell $(PG_CONFIG) --pgxs)
19include $(PGXS)
20else
21subdir = contrib/pgpool-regclass
22#top_builddir = ../..
23include $(top_builddir)/src/Makefile.global
24include $(top_srcdir)/contrib/contrib-global.mk
25endif
26