head	1.4;
access;
symbols
	REL9_0_0:1.4
	REL9_1_ALPHA1:1.4
	REL9_0_RC1:1.4
	REL9_0_BETA4:1.4
	REL9_0_STABLE:1.4.0.2
	REL9_0_BETA3:1.4
	REL9_0_BETA2:1.3;
locks; strict;
comment	@# @;


1.4
date	2010.07.03.14.23.13;	author momjian;	state Exp;
branches;
next	1.3;

1.3
date	2010.05.13.01.03.00;	author momjian;	state Exp;
branches;
next	1.2;

1.2
date	2010.05.12.11.33.08;	author momjian;	state Exp;
branches;
next	1.1;

1.1
date	2010.05.12.02.19.10;	author momjian;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Add CVS tags to pg_upgrade and pg_upgrade_support files, per request
from Tom.
@
text
@#
# Makefile for pg_upgrade
#
# $PostgreSQL: pgsql/contrib/citext/Makefile,v 1.1 2008/07/29 18:31:20 tgl Exp $

PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
PGAPPICON = win32

PROGRAM  = pg_upgrade
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
       option.o page.o pg_upgrade.o relfilenode.o server.o \
       tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)

PG_CPPFLAGS  = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
PG_LIBS = $(libpq_pgport)

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


1.3
log
@Move pg_upgrade shared library out into its own /contrib directory
(pg_upgrade_support).
@
text
@d4 1
@


1.2
log
@Add PGFILEDESC description to Makefiles for all /contrib executables.

Add PGAPPICON to all executable makefiles.
@
text
@a3 4
#	targets:	all, clean, install, uninstall 
#
# This Makefile generates an executable and a shared object file
#
a12 2
MODULES = pg_upgrade_sysoids

@


1.1
log
@Add pg_upgrade to /contrib;  will be in 9.0 beta2.

Add documentation.

Supports migration from PG 8.3 and 8.4.
@
text
@d9 9
a17 4
PROGRAM      = pg_upgrade
OBJS         = check.o controldata.o dump.o exec.o file.o function.o info.o \
		option.o page.o pg_upgrade.o relfilenode.o server.o \
		tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)
d20 1
a20 5
PG_LIBS      = $(libpq_pgport)

PGFILEDESC   = "pg_upgrade - In-Place Binary Upgrade Utility"
PGAPPICON    = win32
MODULES      = pg_upgrade_sysoids
@

