1# src/test/modules/test_parser/Makefile
2
3MODULE_big = test_parser
4OBJS = \
5	$(WIN32RES) \
6	test_parser.o
7PGFILEDESC = "test_parser - example of a custom parser for full-text search"
8
9EXTENSION = test_parser
10DATA = test_parser--1.0.sql
11
12REGRESS = test_parser
13
14ifdef USE_PGXS
15PG_CONFIG = pg_config
16PGXS := $(shell $(PG_CONFIG) --pgxs)
17include $(PGXS)
18else
19subdir = src/test/modules/test_parser
20top_builddir = ../../../..
21include $(top_builddir)/src/Makefile.global
22include $(top_srcdir)/contrib/contrib-global.mk
23endif
24