OSDN Git Service

Makefileをリファクタリングした
[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 create_execute
9
10 REGRESSION_EXPECTED = 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 expected/create_execute.out
11
12 EXTRA_CLEAN = core.c sql/fdw.sql expected/fdw.out $(REGRESSION_EXPECTED)
13
14 PG_CONFIG = pg_config
15 PGXS := $(shell $(PG_CONFIG) --pgxs)
16 include $(PGXS)
17
18 core.c: core-$(MAJORVERSION).c
19         cp core-$(MAJORVERSION).c core.c
20
21 $(REGRESSION_EXPECTED): %.out: %-$(MAJORVERSION).out
22         cp $< $@
23
24 installcheck: $(REGRESSION_EXPECTED)
25
26 # pg_hint_plan.c includes core.c and make_join_rel.c
27 pg_hint_plan.o: core.c make_join_rel.c