2006-10-19 13:40:03 -04:00
|
|
|
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.8 2006/10/19 17:40:03 tgl Exp $
|
2001-08-07 12:47:43 -04:00
|
|
|
|
2004-06-30 23:25:48 -04:00
|
|
|
MODULE_big = fuzzystrmatch
|
2006-10-19 13:40:03 -04:00
|
|
|
OBJS = fuzzystrmatch.o dmetaphone.o
|
2001-09-06 06:49:30 -04:00
|
|
|
DATA_built = fuzzystrmatch.sql
|
2006-02-27 07:54:39 -05:00
|
|
|
DATA = uninstall_fuzzystrmatch.sql
|
2001-09-06 06:49:30 -04:00
|
|
|
DOCS = README.fuzzystrmatch README.soundex
|
2001-08-07 12:47:43 -04:00
|
|
|
|
2004-08-20 16:13:10 -04:00
|
|
|
ifdef USE_PGXS
|
2005-09-27 13:13:14 -04:00
|
|
|
PGXS := $(shell pg_config --pgxs)
|
2004-08-20 16:13:10 -04:00
|
|
|
include $(PGXS)
|
|
|
|
|
else
|
|
|
|
|
subdir = contrib/fuzzystrmatch
|
|
|
|
|
top_builddir = ../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2001-09-06 06:49:30 -04:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-20 16:13:10 -04:00
|
|
|
endif
|