OSDN Git Service

A-13-4の試験の内容を項目表にあうように変更した。
[pghintplan/pg_hint_plan.git] / Makefile
1 #
2 # pg_hint_plan: Makefile
3 #
4 # Copyright (c) 2012-2013, 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 EXTENSION = pg_hint_plan
15 DATA = pg_hint_plan--1.0.sql
16
17 EXTRA_CLEAN = core.c sql/ut-fdw.sql expected/ut-fdw.out $(REGRESSION_EXPECTED)
18
19 PG_CONFIG = pg_config
20 PGXS := $(shell $(PG_CONFIG) --pgxs)
21 include $(PGXS)
22
23 core.c: core-$(MAJORVERSION).c
24         cp core-$(MAJORVERSION).c core.c
25
26 $(REGRESSION_EXPECTED): %.out: %-$(MAJORVERSION).out
27         cp $< $@
28
29 installcheck: $(REGRESSION_EXPECTED)
30
31 # pg_hint_plan.c includes core.c and make_join_rel.c
32 pg_hint_plan.o: core.c make_join_rel.c pg_stat_statements.c