2007-02-10 01:24:33 +08:00
|
|
|
# $PostgreSQL: pgsql/contrib/pg_trgm/Makefile,v 1.6 2007/02/09 17:24:33 petere Exp $
|
2004-06-01 01:18:12 +08:00
|
|
|
|
|
|
|
MODULE_big = pg_trgm
|
|
|
|
OBJS = trgm_op.o trgm_gist.o
|
|
|
|
|
|
|
|
DATA_built = pg_trgm.sql
|
2006-02-27 20:54:39 +08:00
|
|
|
DATA = uninstall_pg_trgm.sql
|
2004-06-01 01:18:12 +08:00
|
|
|
DOCS = README.pg_trgm
|
|
|
|
REGRESS = pg_trgm
|
|
|
|
|
2004-08-21 04:13:10 +08:00
|
|
|
|
|
|
|
ifdef USE_PGXS
|
2005-09-28 01:13:14 +08:00
|
|
|
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
|