Makefile 372 字节
Newer Older
1

2
PG_CPPFLAGS = -I.
3 4 5 6 7 8 9 10

MODULE_big = pg_trgm
OBJS = trgm_op.o trgm_gist.o 

DATA_built = pg_trgm.sql
DOCS = README.pg_trgm
REGRESS = pg_trgm

11 12

ifdef USE_PGXS
13
PGXS := $(shell pg_config --pgxs)
14 15 16 17 18
include $(PGXS)
else
subdir = contrib/pg_trgm
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
19
include $(top_srcdir)/contrib/contrib-global.mk
20 21 22
endif


23 24
# DO NOT DELETE