~ubuntu-branches/ubuntu/precise/postgresql-9.1/precise-security

« back to all changes in this revision

Viewing changes to contrib/pg_upgrade_support/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# contrib/pg_upgrade_support/Makefile
 
2
 
 
3
PGFILEDESC = "pg_upgrade_support - server-side functions for pg_upgrade"
 
4
 
 
5
MODULES = pg_upgrade_support
 
6
 
 
7
ifdef USE_PGXS
 
8
PG_CONFIG = pg_config
 
9
PGXS := $(shell $(PG_CONFIG) --pgxs)
 
10
include $(PGXS)
 
11
else
 
12
subdir = contrib/pg_upgrade_support
 
13
top_builddir = ../..
 
14
include $(top_builddir)/src/Makefile.global
 
15
include $(top_srcdir)/contrib/contrib-global.mk
 
16
endif