OSDN Git Service

外部テーブルをヒント対象にしたときの各ヒント方式の試験を追加した。
[pghintplan/pg_hint_plan.git] / Makefile
1 #
2 # pg_hint_plan: Makefile
3 #
4 # Copyright (c) 2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5 #
6
7 MODULES = pg_hint_plan
8 REGRESS = init base_plan pg_hint_plan ut-init ut-A ut-S ut-J ut-L ut-G ut-fdw ut-fini
9
10 REGRESSION_EXPECTED = expected/init.out expected/base_plan.out expected/pg_hint_plan.out expected/ut-A.out expected/ut-S.out expected/ut-J.out expected/ut-L.out expected/ut-G.out
11
12 REGRESS_OPTS = --encoding=UTF8
13
14 EXTRA_CLEAN = core.c sql/ut-fdw.sql expected/ut-fdw.out $(REGRESSION_EXPECTED)
15
16 PG_CONFIG = pg_config
17 PGXS := $(shell $(PG_CONFIG) --pgxs)
18 include $(PGXS)
19
20 core.c: core-$(MAJORVERSION).c
21         cp core-$(MAJORVERSION).c core.c
22
23 $(REGRESSION_EXPECTED): %.out: %-$(MAJORVERSION).out
24         cp $< $@
25
26 installcheck: $(REGRESSION_EXPECTED)
27
28 # pg_hint_plan.c includes core.c and make_join_rel.c
29 pg_hint_plan.o: core.c make_join_rel.c