OSDN Git Service

Switch CI from Travis CI to GitHub Actions (#12)
[pgbigm/pg_bigm.git] / Makefile
1 MODULE_big = pg_bigm
2 OBJS = bigm_op.o bigm_gin.o
3
4 EXTENSION = pg_bigm
5 DATA = pg_bigm--1.2.sql pg_bigm--1.1--1.2.sql pg_bigm--1.0--1.1.sql
6 PGFILEDESC = "pg_bigm - bigram matching"
7
8 REGRESS = pg_bigm pg_bigm_ja
9
10 ifdef USE_PGXS
11 PG_CONFIG = pg_config
12 PGXS := $(shell $(PG_CONFIG) --pgxs)
13 include $(PGXS)
14 else
15 subdir = contrib/pg_bigm
16 top_builddir = ../..
17 include $(top_builddir)/src/Makefile.global
18 include $(top_srcdir)/contrib/contrib-global.mk
19 endif
20
21 installcheck-trgm: 
22         $(pg_regress_installcheck) $(REGRESS_OPTS) load_trgm $(REGRESS)