forked from ossc-db/pg_hint_plan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (75 loc) · 2.42 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#
# pg_hint_plan: Makefile
#
# Copyright (c) 2012-2024, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
#
MODULE_big = pg_hint_plan
OBJS = \
$(WIN32RES) \
pg_hint_plan.o \
query_scan.o
HINTPLANVER = 1.8.0
REGRESS = init base_plan pg_hint_plan ut-init ut-A ut-S ut-J ut-L ut-G ut-R \
ut-fdw ut-W ut-T ut-fini plpgsql hint_table oldextversions
REGRESS_OPTS = --encoding=UTF8
EXTENSION = pg_hint_plan
DATA = \
pg_hint_plan--1.3.0.sql \
pg_hint_plan--1.3.0--1.3.1.sql \
pg_hint_plan--1.3.1--1.3.2.sql \
pg_hint_plan--1.3.2--1.3.3.sql \
pg_hint_plan--1.3.3--1.3.4.sql \
pg_hint_plan--1.3.5--1.3.6.sql \
pg_hint_plan--1.3.4--1.3.5.sql \
pg_hint_plan--1.3.6--1.3.7.sql \
pg_hint_plan--1.3.7--1.3.8.sql \
pg_hint_plan--1.3.8--1.3.9.sql \
pg_hint_plan--1.3.9--1.3.10.sql \
pg_hint_plan--1.3.10--1.4.sql \
pg_hint_plan--1.4--1.4.1.sql \
pg_hint_plan--1.4.1--1.4.2.sql \
pg_hint_plan--1.4.2--1.4.3.sql \
pg_hint_plan--1.4.3--1.5.sql \
pg_hint_plan--1.5--1.5.1.sql \
pg_hint_plan--1.5.1--1.5.2.sql \
pg_hint_plan--1.5.2--1.6.0.sql \
pg_hint_plan--1.6.0--1.6.1.sql \
pg_hint_plan--1.6.1--1.7.0.sql \
pg_hint_plan--1.7.0--1.8.0.sql
EXTRA_CLEAN = RPMS
# Switch environment between standalone make and make check with
# EXTRA_INSTALL from PostgreSQL tree
# run the following command in the PG tree to run a regression test
# loading this module.
# $ make check EXTRA_INSTALL=<this directory> EXTRA_REGRESS_OPTS="--temp-config <this directory>/pg_hint_plan.conf"
ifeq ($(wildcard $(DESTDIR)/../src/Makefile.global),)
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = `pwd`
top_builddir = $(DESTDIR)/..
include $(DESTDIR)/../src/Makefile.global
include $(DESTDIR)/../contrib/contrib-global.mk
endif
STARBALL18 = pg_hint_plan18-$(HINTPLANVER).tar.gz
STARBALLS = $(STARBALL18)
TARSOURCES = Makefile *.c *.h COPYRIGHT* \
pg_hint_plan--*.sql \
pg_hint_plan.control \
docs/* expected/*.out sql/*.sql \
data/data.csv SPECS/*.spec
rpms: rpm18
# pg_hint_plan.c includes core.c and make_join_rel.c
pg_hint_plan.o: core.c make_join_rel.c
$(STARBALLS): $(TARSOURCES)
if [ -h $(subst .tar.gz,,$@) ]; then rm $(subst .tar.gz,,$@); fi
if [ -e $(subst .tar.gz,,$@) ]; then \
echo "$(subst .tar.gz,,$@) is not a symlink. Stop."; \
exit 1; \
fi
ln -s . $(subst .tar.gz,,$@)
tar -chzf $@ $(addprefix $(subst .tar.gz,,$@)/, $^)
rm $(subst .tar.gz,,$@)
rpm18: $(STARBALL18)
MAKE_ROOT=`pwd` rpmbuild -bb SPECS/pg_hint_plan18.spec