psql: Add missing punctuation in help output
[pgsql.git] / contrib / ltree / Makefile
blobe92d971f3db02677f9bf9cdf0280b3f92341e269
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.2--1.3.sql ltree--1.1--1.2.sql ltree--1.1.sql \
18 ltree--1.0--1.1.sql
19 PGFILEDESC = "ltree - hierarchical label data type"
21 HEADERS = ltree.h
23 REGRESS = ltree
25 ifdef USE_PGXS
26 PG_CONFIG = pg_config
27 PGXS := $(shell $(PG_CONFIG) --pgxs)
28 include $(PGXS)
29 else
30 subdir = contrib/ltree
31 top_builddir = ../..
32 include $(top_builddir)/src/Makefile.global
33 include $(top_srcdir)/contrib/contrib-global.mk
34 endif