mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			828 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			828 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Makefile for pg_upgrade
 | 
						|
#
 | 
						|
#	targets:	all, clean, install, uninstall 
 | 
						|
#
 | 
						|
# This Makefile generates an executable and a shared object file
 | 
						|
#
 | 
						|
 | 
						|
PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
 | 
						|
PGAPPICON = win32
 | 
						|
 | 
						|
PROGRAM  = pg_upgrade
 | 
						|
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
 | 
						|
       option.o page.o pg_upgrade.o relfilenode.o server.o \
 | 
						|
       tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)
 | 
						|
 | 
						|
MODULES = pg_upgrade_sysoids
 | 
						|
 | 
						|
PG_CPPFLAGS  = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
 | 
						|
PG_LIBS = $(libpq_pgport)
 | 
						|
 | 
						|
ifdef USE_PGXS
 | 
						|
PG_CONFIG = pg_config
 | 
						|
PGXS := $(shell $(PG_CONFIG) --pgxs)
 | 
						|
include $(PGXS)
 | 
						|
else
 | 
						|
subdir = contrib/pg_upgrade
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
endif
 |