mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
90247e742f
Dong Wook Lee, revised a bit by me Discussion: https://postgr.es/m/20220629055326.tdswmcjcr5jzbrsk@home-desktop
25 lines
566 B
Makefile
25 lines
566 B
Makefile
# contrib/pgrowlocks/Makefile
|
|
|
|
MODULE_big = pgrowlocks
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
pgrowlocks.o
|
|
|
|
EXTENSION = pgrowlocks
|
|
DATA = pgrowlocks--1.2.sql pgrowlocks--1.1--1.2.sql pgrowlocks--1.0--1.1.sql
|
|
PGFILEDESC = "pgrowlocks - display row locking information"
|
|
|
|
ISOLATION = pgrowlocks
|
|
ISOLATION_OPTS = --load-extension=pgrowlocks
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pgrowlocks
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|