]> granicus.if.org Git - postgresql/blob - contrib/unaccent/Makefile
Fix copy-and-pasteo that might explain some of the buildfarm's
[postgresql] / contrib / unaccent / Makefile
1 # $PostgreSQL: pgsql/contrib/unaccent/Makefile,v 1.2 2009/08/18 15:51:16 tgl Exp $
2
3 MODULE_big = unaccent
4 OBJS = unaccent.o
5
6 DATA_built = unaccent.sql
7 DATA = uninstall_unaccent.sql
8 DATA_TSEARCH = unaccent.rules
9 REGRESS = unaccent
10
11 # Adjust REGRESS_OPTS because we need a UTF8 database
12 REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB) --multibyte=UTF8 --no-locale 
13
14 ifdef USE_PGXS
15 PG_CONFIG = pg_config
16 PGXS := $(shell $(PG_CONFIG) --pgxs)
17 include $(PGXS)
18 else
19 subdir = contrib/unaccent
20 top_builddir = ../..
21 include $(top_builddir)/src/Makefile.global
22 include $(top_srcdir)/contrib/contrib-global.mk
23 endif