27 lines
		
	
	
		
			541 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			541 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #
 | |
| # pg_reorg: bin/Makefile
 | |
| #
 | |
| #    Copyright (c) 2008-2009, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
 | |
| #
 | |
| SRCS = pg_reorg.c pgut/pgut.c
 | |
| OBJS = $(SRCS:.c=.o)
 | |
| PROGRAM = pg_reorg
 | |
| REGRESS = init reorg
 | |
| 
 | |
| ifdef DEBUG_REORG
 | |
| PG_CPPFLAGS = -I$(libpq_srcdir) -DDEBUG_REORG
 | |
| else
 | |
| PG_CPPFLAGS = -I$(libpq_srcdir)
 | |
| endif
 | |
| PG_LIBS = $(libpq)
 | |
| 
 | |
| ifdef USE_PGXS
 | |
| PGXS := $(shell pg_config --pgxs)
 | |
| include $(PGXS)
 | |
| else
 | |
| subdir = contrib/pg_reorg
 | |
| top_builddir = ../../..
 | |
| include $(top_builddir)/src/Makefile.global
 | |
| include $(top_srcdir)/contrib/contrib-global.mk
 | |
| endif
 |