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

« back to all changes in this revision

Viewing changes to contrib/pg_trgm/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_trgm/Makefile
 
2
 
 
3
MODULE_big = pg_trgm
 
4
OBJS = trgm_op.o trgm_gist.o trgm_gin.o
 
5
 
 
6
EXTENSION = pg_trgm
 
7
DATA = pg_trgm--1.0.sql pg_trgm--unpackaged--1.0.sql
 
8
 
 
9
REGRESS = pg_trgm
 
10
 
 
11
ifdef USE_PGXS
 
12
PG_CONFIG = pg_config
 
13
PGXS := $(shell $(PG_CONFIG) --pgxs)
 
14
include $(PGXS)
 
15
else
 
16
subdir = contrib/pg_trgm
 
17
top_builddir = ../..
 
18
include $(top_builddir)/src/Makefile.global
 
19
include $(top_srcdir)/contrib/contrib-global.mk
 
20
endif