2006-02-27 20:54:39 +08:00
|
|
|
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.7 2006/02/27 12:54:38 petere Exp $
|
2001-08-08 00:47:43 +08:00
|
|
|
|
2004-07-01 11:25:48 +08:00
|
|
|
MODULE_big = fuzzystrmatch
|
|
|
|
SRCS += fuzzystrmatch.c dmetaphone.c
|
|
|
|
OBJS = $(SRCS:.c=.o)
|
2001-09-06 18:49:30 +08:00
|
|
|
DATA_built = fuzzystrmatch.sql
|
2006-02-27 20:54:39 +08:00
|
|
|
DATA = uninstall_fuzzystrmatch.sql
|
2001-09-06 18:49:30 +08:00
|
|
|
DOCS = README.fuzzystrmatch README.soundex
|
2001-08-08 00:47:43 +08:00
|
|
|
|
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/fuzzystrmatch
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2001-09-06 18:49:30 +08:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-21 04:13:10 +08:00
|
|
|
endif
|