]> granicus.if.org Git - postgresql/blob - contrib/fuzzystrmatch/Makefile
Simplify contrib Makefiles by removing unnecessary SRCS macro,
[postgresql] / contrib / fuzzystrmatch / Makefile
1 # $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.8 2006/10/19 17:40:03 tgl Exp $
2
3 MODULE_big = fuzzystrmatch
4 OBJS = fuzzystrmatch.o dmetaphone.o
5 DATA_built = fuzzystrmatch.sql
6 DATA = uninstall_fuzzystrmatch.sql
7 DOCS = README.fuzzystrmatch README.soundex
8
9 ifdef USE_PGXS
10 PGXS := $(shell pg_config --pgxs)
11 include $(PGXS)
12 else
13 subdir = contrib/fuzzystrmatch
14 top_builddir = ../..
15 include $(top_builddir)/src/Makefile.global
16 include $(top_srcdir)/contrib/contrib-global.mk
17 endif