~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to contrib/fuzzystrmatch/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.5 2004-08-20 20:13:04 momjian Exp $
 
2
 
 
3
MODULE_big = fuzzystrmatch
 
4
SRCS += fuzzystrmatch.c dmetaphone.c
 
5
OBJS = $(SRCS:.c=.o)
 
6
DATA_built = 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