mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	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
 |