mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
48c41fa974
Amul Sul, reviewed by Hironobu Suzuki Discussion: https://postgr.es/m/CAAJ_b947JjnNr9Cp45iNjSqKf6PA5mCTmKsRwPjows93YwQrmw@mail.gmail.com
26 lines
581 B
Makefile
26 lines
581 B
Makefile
# contrib/citext/Makefile
|
|
|
|
MODULES = citext
|
|
|
|
EXTENSION = citext
|
|
DATA = citext--1.4.sql \
|
|
citext--1.5--1.6.sql \
|
|
citext--1.4--1.5.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
|