~ubuntu-branches/debian/sid/postgresql-9.3/sid

« back to all changes in this revision

Viewing changes to contrib/unaccent/Makefile

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-05-08 05:39:52 UTC
  • Revision ID: package-import@ubuntu.com-20130508053952-1j7uilp7mjtrvq8q
Tags: upstream-9.3~beta1
ImportĀ upstreamĀ versionĀ 9.3~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# contrib/unaccent/Makefile
 
2
 
 
3
MODULE_big = unaccent
 
4
OBJS = unaccent.o
 
5
 
 
6
EXTENSION = unaccent
 
7
DATA = unaccent--1.0.sql unaccent--unpackaged--1.0.sql
 
8
DATA_TSEARCH = unaccent.rules
 
9
 
 
10
REGRESS = unaccent
 
11
 
 
12
# We need a UTF8 database
 
13
ENCODING = UTF8
 
14
NO_LOCALE = 1
 
15
 
 
16
ifdef USE_PGXS
 
17
PG_CONFIG = pg_config
 
18
PGXS := $(shell $(PG_CONFIG) --pgxs)
 
19
include $(PGXS)
 
20
else
 
21
subdir = contrib/unaccent
 
22
top_builddir = ../..
 
23
include $(top_builddir)/src/Makefile.global
 
24
include $(top_srcdir)/contrib/contrib-global.mk
 
25
endif