mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
72ec567a9a
per Magnus.
18 lines
482 B
Makefile
18 lines
482 B
Makefile
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.8 2006/10/19 17:40:03 tgl Exp $
|
|
|
|
MODULE_big = fuzzystrmatch
|
|
OBJS = fuzzystrmatch.o dmetaphone.o
|
|
DATA_built = fuzzystrmatch.sql
|
|
DATA = uninstall_fuzzystrmatch.sql
|
|
DOCS = README.fuzzystrmatch README.soundex
|
|
|
|
ifdef USE_PGXS
|
|
PGXS := $(shell pg_config --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/fuzzystrmatch
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|