2010-09-21 00:08:53 +04:00
|
|
|
# contrib/pg_trgm/Makefile
|
2004-05-31 21:18:12 +04:00
|
|
|
|
|
|
|
MODULE_big = pg_trgm
|
2013-04-09 09:05:55 +04:00
|
|
|
OBJS = trgm_op.o trgm_gist.o trgm_gin.o trgm_regexp.o
|
2004-05-31 21:18:12 +04:00
|
|
|
|
2011-02-14 04:06:41 +03:00
|
|
|
EXTENSION = pg_trgm
|
2013-04-09 09:05:55 +04:00
|
|
|
DATA = pg_trgm--1.1.sql pg_trgm--1.0--1.1.sql pg_trgm--unpackaged--1.0.sql
|
2011-02-14 04:06:41 +03:00
|
|
|
|
2004-05-31 21:18:12 +04:00
|
|
|
REGRESS = pg_trgm
|
|
|
|
|
2004-08-21 00:13:10 +04:00
|
|
|
ifdef USE_PGXS
|
2007-06-27 02:05:04 +04:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2004-08-21 00:13:10 +04:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/pg_trgm
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2004-05-31 21:18:12 +04:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-21 00:13:10 +04:00
|
|
|
endif
|