mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			457 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			457 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# contrib/dblink/Makefile
 | 
						|
 | 
						|
MODULE_big = dblink
 | 
						|
PG_CPPFLAGS = -I$(libpq_srcdir)
 | 
						|
OBJS	= dblink.o
 | 
						|
SHLIB_LINK = $(libpq)
 | 
						|
SHLIB_PREREQS = submake-libpq
 | 
						|
 | 
						|
DATA_built = dblink.sql
 | 
						|
DATA = uninstall_dblink.sql
 | 
						|
REGRESS = dblink
 | 
						|
 | 
						|
 | 
						|
ifdef USE_PGXS
 | 
						|
PG_CONFIG = pg_config
 | 
						|
PGXS := $(shell $(PG_CONFIG) --pgxs)
 | 
						|
include $(PGXS)
 | 
						|
else
 | 
						|
subdir = contrib/dblink
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
endif
 |