Sha256: 973b2a9b8a47ddc71ee7bdf1478cb40beea3bfa27eb4db7d458df79749444893

Contents?: true

Size: 1.36 KB

Versions: 12

Compression:

Stored size: 1.36 KB

Contents

# $Header$
#
# pgpool: a language independent connection pool server for PostgreSQL
# written by Tatsuo Ishii
#
# Copyright (c) 2003-2013	PgPool Global Development Group
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby
# granted, provided that the above copyright notice appear in all
# copies and that both that copyright notice and this permission
# notice appear in supporting documentation, and that the name of the
# author not be used in advertising or publicity pertaining to
# distribution of the software without specific, written prior
# permission. The author makes no representations about the
# suitability of this software for any purpose.  It is provided "as
# is" without express or implied warranty.
#
# Makefile for sql/ directory.

subdir = sql

# if you are using PostgreSQL 8.0 or later,
# using pg_config is recommended.
# if you are not, comment out following line and...
USE_PGXS = true
# set top_builddir to the PostgreSQL build source tree top.
# (for example /usr/local/src/postgresql-9.0) 
top_builddir = ..

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS = $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif

SUBDIRS = \
		pgpool-recovery \
		pgpool-regclass

$(recurse)

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
prestogres-0.4.8 pgpool2/sql/Makefile
prestogres-0.4.7 pgpool2/sql/Makefile
prestogres-0.4.6 pgpool2/sql/Makefile
prestogres-0.4.5 pgpool2/sql/Makefile
prestogres-0.4.4 pgpool2/sql/Makefile
prestogres-0.4.3 pgpool2/sql/Makefile
prestogres-0.4.2 pgpool2/sql/Makefile
prestogres-0.4.1 pgpool2/sql/Makefile
prestogres-0.4.0 pgpool2/sql/Makefile
prestogres-0.3.0 pgpool2/sql/Makefile
prestogres-0.2.0 pgpool2/sql/Makefile
prestogres-0.1.0 pgpool2/sql/Makefile