]> granicus.if.org Git - postgresql/blob - src/backend/utils/adt/Makefile
Move the guts of our Levenshtein implementation into core.
[postgresql] / src / backend / utils / adt / Makefile
1 #
2 # Makefile for utils/adt
3 #
4 # src/backend/utils/adt/Makefile
5 #
6
7 subdir = src/backend/utils/adt
8 top_builddir = ../../../..
9 include $(top_builddir)/src/Makefile.global
10
11 # seems to be required for some date/time stuff 1999/07/22 bjm
12 ifeq "$(findstring alpha,$(host_cpu))" "alpha"
13 ifeq "$(GCC)" "yes"
14 override CFLAGS+= -mieee
15 endif
16 endif
17
18 # keep this list arranged alphabetically or it gets to be a mess
19 OBJS = acl.o arrayfuncs.o array_selfuncs.o array_typanalyze.o \
20         array_userfuncs.o arrayutils.o ascii.o bool.o \
21         cash.o char.o date.o datetime.o datum.o dbsize.o domains.o \
22         encode.o enum.o float.o format_type.o formatting.o genfile.o \
23         geo_ops.o geo_selfuncs.o inet_cidr_ntop.o inet_net_pton.o int.o \
24         int8.o json.o jsonb.o jsonb_gin.o jsonb_op.o jsonb_util.o \
25         jsonfuncs.o like.o lockfuncs.o mac.o misc.o nabstime.o name.o \
26         network.o network_gist.o network_selfuncs.o \
27         numeric.o numutils.o oid.o oracle_compat.o \
28         orderedsetaggs.o pg_lzcompress.o pg_locale.o pg_lsn.o \
29         pgstatfuncs.o pseudotypes.o quote.o rangetypes.o rangetypes_gist.o \
30         rangetypes_selfuncs.o rangetypes_spgist.o rangetypes_typanalyze.o \
31         regexp.o regproc.o ri_triggers.o rowtypes.o ruleutils.o \
32         selfuncs.o tid.o timestamp.o trigfuncs.o \
33         tsginidx.o tsgistidx.o tsquery.o tsquery_cleanup.o tsquery_gist.o \
34         tsquery_op.o tsquery_rewrite.o tsquery_util.o tsrank.o \
35         tsvector.o tsvector_op.o tsvector_parser.o \
36         txid.o uuid.o varbit.o varchar.o varlena.o version.o \
37         windowfuncs.o xid.o xml.o
38
39 like.o: like.c like_match.c
40
41 varlena.o: varlena.c levenshtein.c
42
43 include $(top_srcdir)/src/backend/common.mk