forked from enova/pgl_ddl_deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
75 lines (73 loc) · 2.92 KB
/
Copy pathMakefile
File metadata and controls
75 lines (73 loc) · 2.92 KB
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
EXTENSION = pgl_ddl_deploy
DATA = pgl_ddl_deploy--1.0.sql pgl_ddl_deploy--1.0--1.1.sql \
pgl_ddl_deploy--1.1.sql pgl_ddl_deploy--1.1--1.2.sql \
pgl_ddl_deploy--1.2.sql pgl_ddl_deploy--1.2--1.3.sql \
pgl_ddl_deploy--1.3.sql pgl_ddl_deploy--1.3--1.4.sql \
pgl_ddl_deploy--1.4.sql pgl_ddl_deploy--1.4--1.5.sql \
pgl_ddl_deploy--1.5.sql pgl_ddl_deploy--1.5--1.6.sql \
pgl_ddl_deploy--1.6.sql pgl_ddl_deploy--1.6--1.7.sql \
pgl_ddl_deploy--1.7.sql pgl_ddl_deploy--1.7--2.0.sql \
pgl_ddl_deploy--2.0.sql pgl_ddl_deploy--2.0--2.1.sql \
pgl_ddl_deploy--2.1.sql pgl_ddl_deploy--2.1--2.2.sql \
pgl_ddl_deploy--2.2.sql pgl_ddl_deploy--2.2--2.3.sql \
pgl_ddl_deploy--2.3.sql pgl_ddl_deploy--2.3--2.4.sql \
pgl_ddl_deploy--2.4.sql
MODULES = ddl_deparse
MODULE_big = pgl_ddl_deploy
OBJS = postgres_deparse.11.o \
postgres_deparse.12.o \
postgres_deparse.13.o \
postgres_deparse.14.o \
postgres_deparse.15.o \
postgres_deparse.16.o \
postgres_deparse.17.o \
postgres_deparse.18.o \
pgl_ddl_deploy.o
REGRESS := 01_create_ext 02_setup 03_add_configs 04_deploy 04_deploy_update \
05_allowed 06_multi 07_edges 08_ignored \
09_unsupported 10_no_create_user 11_override \
12_sql_command_tags 13_transaction \
15_new_set_behavior 16_multi_set_tags \
17_include_only_repset_tables_1 \
18_include_only_repset_tables_2 \
19_include_only_repset_tables_3 \
20_include_only_repset_tables_4 21_unprivileged_users \
22_is_deployed 23_1_4_features 24_sub_retries \
25_1_5_features 26_new_setup \
27_raise_message 28_1_6_features \
29_create_ext \
30_setup \
31_add_configs \
32_deploy_update \
33_allowed \
34_multi \
35_edges \
36_ignored \
37_unsupported \
38_no_create_user \
39_override \
40_sql_command_tags \
41_transaction \
43_new_set_behavior \
44_multi_set_tags \
45_include_only_repset_tables_1 \
46_include_only_repset_tables_2 \
47_include_only_repset_tables_3 \
48_include_only_repset_tables_4 \
49_unprivileged_users \
50_is_deployed \
51_1_4_features \
52_sub_retries \
53_1_5_features \
54_new_setup \
55_raise_message \
56_1_6_features \
57_2_4_features \
99_native_features
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
# Prevent unintentional inheritance of PGSERVICE while running regression suite
# with make installcheck. We typically use PGSERVICE in our shell environment but
# not for dev. Require instead explicit PGPORT= or PGSERVICE= to do installcheck
unexport PGSERVICE