blob: 05b2464b279e2a31e8cd4300708f34804300ad6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# src/test/modules/spgist_name_ops/Makefile
MODULE_big = spgist_name_ops
OBJS = \
$(WIN32RES) \
spgist_name_ops.o
PGFILEDESC = "spgist_name_ops - test opclass for SP-GiST"
EXTENSION = spgist_name_ops
DATA = spgist_name_ops--1.0.sql
REGRESS = spgist_name_ops
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = src/test/modules/spgist_name_ops
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
|