You've already forked pg_probackup
							
							
				mirror of
				https://github.com/postgrespro/pg_probackup.git
				synced 2025-10-31 00:17:52 +02:00 
			
		
		
		
	git-svn-id: http://pg-rman.googlecode.com/svn/trunk@48 182aca00-e38e-11de-a668-6fd11605f5ce
		
			
				
	
	
		
			45 lines
		
	
	
		
			868 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			868 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| PROGRAM = pg_rman
 | |
| SRCS = \
 | |
| 	backup.c \
 | |
| 	catalog.c \
 | |
| 	data.c \
 | |
| 	delete.c \
 | |
| 	dir.c \
 | |
| 	init.c \
 | |
| 	parray.c \
 | |
| 	pg_rman.c \
 | |
| 	restore.c \
 | |
| 	show.c \
 | |
| 	util.c \
 | |
| 	validate.c \
 | |
| 	xlog.c \
 | |
| 	pgsql_src/pg_ctl.c \
 | |
| 	pgsql_src/pg_crc.c \
 | |
| 	pgut/pgut.c \
 | |
| 	pgut/pgut-port.c
 | |
| OBJS = $(SRCS:.c=.o)
 | |
| # pg_crc.c and are copied from PostgreSQL source tree.
 | |
| 
 | |
| # XXX for debug, add -g and disable optimization
 | |
| PG_CPPFLAGS = -I$(libpq_srcdir)
 | |
| PG_LIBS = $(libpq_pgport)
 | |
| 
 | |
| REGRESS = option init show_validate backup_restore
 | |
| 
 | |
| ifdef USE_PGXS
 | |
| PG_CONFIG = pg_config
 | |
| PGXS := $(shell $(PG_CONFIG) --pgxs)
 | |
| include $(PGXS)
 | |
| else
 | |
| subdir = contrib/pg_rman
 | |
| top_builddir = ../..
 | |
| include $(top_builddir)/src/Makefile.global
 | |
| include $(top_srcdir)/contrib/contrib-global.mk
 | |
| endif
 | |
| 
 | |
| # remove dependency to libxml2 and libxslt
 | |
| LIBS := $(filter-out -lxml2, $(LIBS))
 | |
| LIBS := $(filter-out -lxslt, $(LIBS))
 | |
| 
 | |
| $(OBJS): pg_rman.h
 |