]> granicus.if.org Git - postgresql/blob - contrib/pg_trgm/Makefile
> Please find enclose a submission to fix these problems.
[postgresql] / contrib / pg_trgm / Makefile
1
2 PG_CPPFLAGS = -I.
3
4 MODULE_big = pg_trgm
5 OBJS = trgm_op.o trgm_gist.o 
6
7 DATA_built = pg_trgm.sql
8 DOCS = README.pg_trgm
9 REGRESS = pg_trgm
10
11
12 ifdef USE_PGXS
13 PGXS = $(shell pg_config --pgxs)
14 include $(PGXS)
15 else
16 subdir = contrib/pg_trgm
17 top_builddir = ../..
18 include $(top_builddir)/src/Makefile.global
19 include $(top_srcdir)/contrib/contrib-global.mk
20 endif
21
22
23 # DO NOT DELETE
24