Remove leftover code in deconstruct_distribute_oj_quals().
[pgsql.git] / contrib / ltree / Makefile
blob770769a730d44485570e958f4058541deca0e671
1 # contrib/ltree/Makefile
3 MODULE_big = ltree
4 OBJS = \
5 $(WIN32RES) \
6 _ltree_gist.o \
7 _ltree_op.o \
8 crc32.o \
9 lquery_op.o \
10 ltree_gist.o \
11 ltree_io.o \
12 ltree_op.o \
13 ltxtquery_io.o \
14 ltxtquery_op.o
16 EXTENSION = ltree
17 DATA = ltree--1.1--1.2.sql ltree--1.1.sql ltree--1.0--1.1.sql
18 PGFILEDESC = "ltree - hierarchical label data type"
20 HEADERS = ltree.h
22 REGRESS = ltree
24 ifdef USE_PGXS
25 PG_CONFIG = pg_config
26 PGXS := $(shell $(PG_CONFIG) --pgxs)
27 include $(PGXS)
28 else
29 subdir = contrib/ltree
30 top_builddir = ../..
31 include $(top_builddir)/src/Makefile.global
32 include $(top_srcdir)/contrib/contrib-global.mk
33 endif