mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
f9d747a4e9
Emre Hasegeli Patch: <CAE2gYzzF24ZHWqkMukkHwqa0otbES9Rex22LrjQUNbi=oKziNQ@mail.gmail.com>
23 lines
530 B
Makefile
23 lines
530 B
Makefile
# contrib/citext/Makefile
|
|
|
|
MODULES = citext
|
|
|
|
EXTENSION = citext
|
|
DATA = citext--1.4.sql citext--1.3--1.4.sql \
|
|
citext--1.2--1.3.sql citext--1.1--1.2.sql \
|
|
citext--1.0--1.1.sql citext--unpackaged--1.0.sql
|
|
PGFILEDESC = "citext - case-insensitive character string data type"
|
|
|
|
REGRESS = citext
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/citext
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|