File: Makefile

package info (click to toggle)
pg-dirtyread 2.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 244 kB
  • sloc: sql: 471; ansic: 383; makefile: 17; sh: 1
file content (19 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MODULE_big = pg_dirtyread
OBJS = pg_dirtyread.o dirtyread_tupconvert.o

EXTENSION = pg_dirtyread
DATA = pg_dirtyread--1.0.sql \
	   pg_dirtyread--1.0--2.sql pg_dirtyread--2.sql

REGRESS = extension dirtyread oid index

PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)

# toast test works on PG14+ only
ifneq ($(filter-out 9.% 10 11 12 13,$(MAJORVERSION)),)
  REGRESS += toast
endif

pg_dirtyread.o dirtyread_tupconvert.o: dirtyread_tupconvert.h