2010-09-21 04:08:53 +08:00
|
|
|
# contrib/citext/Makefile
|
2008-07-30 02:31:20 +08:00
|
|
|
|
|
|
|
MODULES = citext
|
2011-02-14 09:06:41 +08:00
|
|
|
|
|
|
|
EXTENSION = citext
|
|
|
|
DATA = citext--1.0.sql citext--unpackaged--1.0.sql
|
2014-07-15 02:07:52 +08:00
|
|
|
PGFILEDESC = "citext - case-insensitive character string data type"
|
2011-02-14 09:06:41 +08:00
|
|
|
|
2008-07-30 02:31:20 +08:00
|
|
|
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
|