head	1.6;
access;
symbols
	REL9_0_0:1.6
	REL9_1_ALPHA1:1.6
	REL9_0_RC1:1.6
	REL9_0_BETA4:1.6
	REL9_0_STABLE:1.6.0.14
	REL9_0_BETA3:1.6
	REL9_0_BETA2:1.6
	REL8_2_17:1.3
	REL8_3_11:1.5
	REL8_4_4:1.6
	REL9_0_BETA1:1.6
	REL9_0_ALPHA5_BRANCH:1.6.0.12
	REL9_0_ALPHA5:1.6
	REL8_2_16:1.3
	REL8_3_10:1.5
	REL8_4_3:1.6
	REL9_0_ALPHA4:1.6
	REL9_0_ALPHA4_BRANCH:1.6.0.10
	REL8_5_ALPHA3:1.6
	REL8_5_ALPHA3_BRANCH:1.6.0.8
	REL8_2_15:1.3
	REL8_3_9:1.5
	REL8_4_2:1.6
	REL8_5_ALPHA2:1.6
	REL8_5_ALPHA2_BRANCH:1.6.0.6
	REL8_2_14:1.3
	REL8_3_8:1.5
	REL8_4_1:1.6
	REL8_5_ALPHA1:1.6
	REL8_5_ALPHA1_BRANCH:1.6.0.4
	REL8_4_STABLE:1.6.0.2
	REL8_4_0:1.6
	REL8_4_RC2:1.6
	REL8_4_RC1:1.6
	REL8_4_BETA2:1.6
	REL8_4_BETA1:1.5
	REL8_2_13:1.3
	REL8_3_7:1.5
	REL8_2_12:1.3
	REL8_3_6:1.5
	REL8_2_11:1.3
	REL8_3_5:1.5
	REL8_2_10:1.3
	REL8_3_4:1.5
	REL8_2_9:1.3
	REL8_3_3:1.5
	REL8_2_8:1.3
	REL8_3_2:1.5
	REL8_2_7:1.3
	REL8_3_1:1.5
	REL8_3_STABLE:1.5.0.2
	REL8_3_0:1.5
	REL8_3_RC2:1.5
	REL8_2_6:1.3
	REL8_3_RC1:1.5
	REL8_3_BETA4:1.5
	REL8_3_BETA3:1.5
	REL8_3_BETA2:1.4
	REL8_3_BETA1:1.4
	REL8_2_5:1.3
	REL8_2_4:1.3
	REL8_2_3:1.3
	REL8_2_2:1.3
	REL8_2_1:1.3
	REL8_2_STABLE:1.3.0.2
	REL8_2_0:1.3
	REL8_2_RC1:1.3
	REL8_2_BETA3:1.3
	REL8_2_BETA2:1.3
	REL8_2_BETA1:1.1;
locks; strict;
comment	@# @;


1.6
date	2009.04.28.17.07.50;	author momjian;	state Exp;
branches;
next	1.5;

1.5
date	2007.11.10.23.59.51;	author momjian;	state Exp;
branches;
next	1.4;

1.4
date	2007.06.26.22.05.03;	author tgl;	state Exp;
branches;
next	1.3;

1.3
date	2006.10.19.17.40.03;	author tgl;	state Exp;
branches;
next	1.2;

1.2
date	2006.09.30.18.08.32;	author tgl;	state Exp;
branches;
next	1.1;

1.1
date	2006.04.23.01.12.58;	author ishii;	state Exp;
branches;
next	;


desc
@@


1.6
log
@Blank line Makefile cleanups.
@
text
@#-------------------------------------------------------------------------
#
# pgrowlocks Makefile
#
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.5 2007/11/10 23:59:51 momjian Exp $
#
#-------------------------------------------------------------------------

MODULE_big	= pgrowlocks
OBJS		= pgrowlocks.o
DATA_built	= pgrowlocks.sql
DATA		= uninstall_pgrowlocks.sql

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


1.5
log
@Remove references to READMEs from /contrib Makefiles.
@
text
@d5 1
a5 1
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.4 2007/06/26 22:05:03 tgl Exp $
a23 1

@


1.4
log
@Fix PGXS conventions so that extensions can be built against Postgres
installations whose pg_config program does not appear first in the PATH.
Per gripe from Eddie Stanley and subsequent discussions with Fabien Coelho
and others.
@
text
@d5 1
a5 1
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.3 2006/10/19 17:40:03 tgl Exp $
a10 1
DOCS		= README.pgrowlocks README.pgrowlocks.euc_jp
@


1.3
log
@Simplify contrib Makefiles by removing unnecessary SRCS macro,
per Magnus.
@
text
@d5 1
a5 1
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.2 2006/09/30 18:08:32 tgl Exp $
d16 2
a17 1
PGXS = $(shell pg_config --pgxs)
@


1.2
log
@uninstall script for pgrowlocks - Josh Drake
@
text
@d5 1
a5 1
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.1 2006/04/23 01:12:58 ishii Exp $
a8 2
SRCS		= pgrowlocks.c

d10 1
a10 1
OBJS		= $(SRCS:.c=.o)
@


1.1
log
@Add new contrib function pgrowlocks. See README.pgrowlocks for more details.
@
text
@d5 1
a5 1
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.3 2004/08/20 20:13:07 momjian Exp $
d15 1
@

