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