File: Makefile

package info (click to toggle)
pglogical-ticker 1.4.1-8
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 408 kB
  • sloc: sql: 1,809; ansic: 214; sh: 132; makefile: 22
file content (23 lines) | stat: -rw-r--r-- 969 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# pglogical_ticker/Makefile

MODULES = pglogical_ticker
REGRESS :=  01_create_ext 02_setup 03_deploy 04_add_to_rep \
            05_tick 06_worker 07_handlers 08_reentrance \
            09_1_2_tests 99_cleanup

EXTENSION = pglogical_ticker
DATA = pglogical_ticker--1.0.sql pglogical_ticker--1.0--1.1.sql \
        pglogical_ticker--1.1.sql pglogical_ticker--1.1--1.2.sql \
        pglogical_ticker--1.2.sql pglogical_ticker--1.2--1.3.sql \
        pglogical_ticker--1.3.sql pglogical_ticker--1.3--1.4.sql \
        pglogical_ticker--1.4.sql
PGFILEDESC = "pglogical_ticker - Have an accurate view of pglogical replication delay"

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