mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	Mark Dilger, reviewed by Peter Geoghegan, Andres Freund, Álvaro Herrera, Michael Paquier, Amul Sul, and by me. Some last-minute cosmetic revisions by me. Discussion: http://postgr.es/m/12ED3DA8-25F0-4B68-937D-D907CFBF08E7@enterprisedb.com
		
			
				
	
	
		
			27 lines
		
	
	
		
			582 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			582 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# contrib/amcheck/Makefile
 | 
						|
 | 
						|
MODULE_big	= amcheck
 | 
						|
OBJS = \
 | 
						|
	$(WIN32RES) \
 | 
						|
	verify_heapam.o \
 | 
						|
	verify_nbtree.o
 | 
						|
 | 
						|
EXTENSION = amcheck
 | 
						|
DATA = amcheck--1.2--1.3.sql amcheck--1.1--1.2.sql amcheck--1.0--1.1.sql amcheck--1.0.sql
 | 
						|
PGFILEDESC = "amcheck - function for verifying relation integrity"
 | 
						|
 | 
						|
REGRESS = check check_btree check_heap
 | 
						|
 | 
						|
TAP_TESTS = 1
 | 
						|
 | 
						|
ifdef USE_PGXS
 | 
						|
PG_CONFIG = pg_config
 | 
						|
PGXS := $(shell $(PG_CONFIG) --pgxs)
 | 
						|
include $(PGXS)
 | 
						|
else
 | 
						|
subdir = contrib/amcheck
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
endif
 |