mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			599 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			599 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#-------------------------------------------------------------------------
 | 
						|
#
 | 
						|
# pgstattuple Makefile
 | 
						|
#
 | 
						|
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.2 2003/11/29 22:39:29 pgsql Exp $
 | 
						|
#
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
 | 
						|
subdir = contrib/pgstattuple
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
 | 
						|
MODULE_big	:= pgstattuple
 | 
						|
SRCS		+= pgstattuple.c
 | 
						|
OBJS		:= $(SRCS:.c=.o)
 | 
						|
DOCS		:= README.pgstattuple README.pgstattuple.euc_jp
 | 
						|
DATA_built	:= pgstattuple.sql
 | 
						|
 | 
						|
PG_CPPFLAGS	:=
 | 
						|
SHLIB_LINK 	:=
 | 
						|
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 |