OSDN Git Service

[No]IndexOnlyScanヒントの試験を追加した。
[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 fdw ut-init ut-A ut-A2 ut-S ut-J ut-L ut-G ut-fini indexonly
9 #REGRESS = ut-init ut-J ut-fini
10
11 EXTRA_CLEAN = core.c sql/fdw.sql expected/init.out expected/base_plan.out expected/pg_hint_plan.out expected/fdw.out expected/ut-A.out expected/ut-A2.out expected/ut-S.out expected/ut-J.out expected/ut-L.out expected/ut-G.out expected/indexonly.out
12
13 PG_CONFIG = pg_config
14 PGXS := $(shell $(PG_CONFIG) --pgxs)
15 include $(PGXS)
16
17 core.c: core-$(MAJORVERSION).c
18         cp core-$(MAJORVERSION).c core.c
19 expected/init.out: expected/init-$(MAJORVERSION).out
20         cp expected/init-$(MAJORVERSION).out expected/init.out
21 expected/pg_hint_plan.out: expected/pg_hint_plan-$(MAJORVERSION).out
22         cp expected/pg_hint_plan-$(MAJORVERSION).out expected/pg_hint_plan.out
23 expected/ut-A.out: expected/ut-A-$(MAJORVERSION).out
24         cp expected/ut-A-$(MAJORVERSION).out expected/ut-A.out
25 expected/ut-A2.out: expected/ut-A2-$(MAJORVERSION).out
26         cp expected/ut-A2-$(MAJORVERSION).out expected/ut-A2.out
27 expected/ut-G.out: expected/ut-G-$(MAJORVERSION).out
28         cp expected/ut-G-$(MAJORVERSION).out expected/ut-G.out
29 expected/ut-J.out: expected/ut-J-$(MAJORVERSION).out
30         cp expected/ut-J-$(MAJORVERSION).out expected/ut-J.out
31 expected/ut-L.out: expected/ut-L-$(MAJORVERSION).out
32         cp expected/ut-L-$(MAJORVERSION).out expected/ut-L.out
33 expected/ut-S.out: expected/ut-S-$(MAJORVERSION).out
34         cp expected/ut-S-$(MAJORVERSION).out expected/ut-S.out
35 expected/base_plan.out: expected/base_plan-$(MAJORVERSION).out
36         cp expected/base_plan-$(MAJORVERSION).out expected/base_plan.out
37 expected/indexonly.out: expected/indexonly-$(MAJORVERSION).out
38         cp expected/indexonly-$(MAJORVERSION).out expected/indexonly.out
39
40 installcheck: expected/init.out expected/base_plan.out expected/pg_hint_plan.out expected/ut-A.out expected/ut-A2.out expected/ut-S.out expected/ut-J.out expected/ut-L.out expected/ut-G.out expected/indexonly.out
41
42 # pg_hint_plan.c includes core.c and make_join_rel.c
43 pg_hint_plan.o: core.c make_join_rel.c