forked from arkhipov/temporal_tables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGNUmakefile
25 lines (21 loc) · 812 Bytes
/
GNUmakefile
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
# versioning/Makefile
MODULE_big = temporal_tables
OBJS = temporal_tables.o versioning.o
EXTENSION = temporal_tables
DATA = temporal_tables--1.2.2.sql \
temporal_tables--1.0.0--1.0.1.sql \
temporal_tables--1.0.1--1.0.2.sql \
temporal_tables--1.0.2--1.1.0.sql \
temporal_tables--1.1.0--1.1.1.sql \
temporal_tables--1.1.1--1.2.0.sql \
temporal_tables--1.2.0--1.2.1.sql \
temporal_tables--1.2.1--1.2.2.sql
DOCS = README.md
REGRESS = install no_system_period invalid_system_period \
no_history_table no_history_system_period invalid_types \
invalid_system_period_values \
versioning versioning_custom_system_time combinations \
structure uninstall
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)