mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
13629df5a1
an empty input string causes an empty output string to be returned, instead of throwing an ERROR -- per complaint from Aaron Hillegass, and consistent with double metaphone. Fix examples in README.soundex pointed out by James Robinson.
14 lines
394 B
Makefile
14 lines
394 B
Makefile
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.4 2004/07/01 03:25:48 joe Exp $
|
|
|
|
subdir = contrib/fuzzystrmatch
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big = fuzzystrmatch
|
|
SRCS += fuzzystrmatch.c dmetaphone.c
|
|
OBJS = $(SRCS:.c=.o)
|
|
DATA_built = fuzzystrmatch.sql
|
|
DOCS = README.fuzzystrmatch README.soundex
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|