]> granicus.if.org Git - postgresql/blob - src/backend/utils/adt/Makefile
Fix initialization of fake LSN for unlogged relations
[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 # keep this list arranged alphabetically or it gets to be a mess
12 OBJS = acl.o amutils.o arrayfuncs.o array_expanded.o array_selfuncs.o \
13         array_typanalyze.o array_userfuncs.o arrayutils.o ascii.o \
14         bool.o cash.o char.o cryptohashes.o \
15         date.o datetime.o datum.o dbsize.o domains.o \
16         encode.o enum.o expandeddatum.o expandedrecord.o \
17         float.o format_type.o formatting.o genfile.o \
18         geo_ops.o geo_selfuncs.o geo_spgist.o inet_cidr_ntop.o inet_net_pton.o \
19         int.o int8.o json.o jsonb.o jsonb_gin.o jsonb_op.o jsonb_util.o \
20         jsonfuncs.o jsonpath_gram.o jsonpath.o jsonpath_exec.o \
21         like.o like_support.o lockfuncs.o mac.o mac8.o misc.o name.o \
22         network.o network_gist.o network_selfuncs.o network_spgist.o \
23         numeric.o numutils.o oid.o oracle_compat.o \
24         orderedsetaggs.o partitionfuncs.o pg_locale.o pg_lsn.o \
25         pg_upgrade_support.o pgstatfuncs.o \
26         pseudotypes.o quote.o rangetypes.o rangetypes_gist.o \
27         rangetypes_selfuncs.o rangetypes_spgist.o rangetypes_typanalyze.o \
28         regexp.o regproc.o ri_triggers.o rowtypes.o ruleutils.o \
29         selfuncs.o tid.o timestamp.o trigfuncs.o \
30         tsginidx.o tsgistidx.o tsquery.o tsquery_cleanup.o tsquery_gist.o \
31         tsquery_op.o tsquery_rewrite.o tsquery_util.o tsrank.o \
32         tsvector.o tsvector_op.o tsvector_parser.o \
33         txid.o uuid.o varbit.o varchar.o varlena.o version.o \
34         windowfuncs.o xid.o xml.o
35
36 jsonpath_scan.c: FLEXFLAGS = -CF -p -p
37 jsonpath_scan.c: FLEX_NO_BACKUP=yes
38
39 # jsonpath_scan is compiled as part of jsonpath_gram
40 jsonpath_gram.o: jsonpath_scan.c
41
42 # jsonpath_gram.c and jsonpath_scan.c are in the distribution tarball,
43 # so they are not cleaned here.
44 clean distclean maintainer-clean:
45         rm -f lex.backup
46
47 like.o: like.c like_match.c
48
49 varlena.o: varlena.c levenshtein.c
50
51 include $(top_srcdir)/src/backend/common.mk