mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
18 lines
364 B
Makefile
18 lines
364 B
Makefile
# contrib/tsearch2/Makefile
|
|
|
|
MODULES = tsearch2
|
|
DATA_built = tsearch2.sql
|
|
DATA = uninstall_tsearch2.sql
|
|
REGRESS = tsearch2
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/tsearch2
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|