~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to contrib/pgstattuple/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------
 
2
#
 
3
# pgstattuple Makefile
 
4
#
 
5
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.3 2004-08-20 20:13:07 momjian Exp $
 
6
#
 
7
#-------------------------------------------------------------------------
 
8
 
 
9
SRCS            = pgstattuple.c
 
10
 
 
11
MODULE_big      = pgstattuple
 
12
OBJS            = $(SRCS:.c=.o)
 
13
DOCS            = README.pgstattuple README.pgstattuple.euc_jp
 
14
DATA_built      = pgstattuple.sql
 
15
 
 
16
ifdef USE_PGXS
 
17
PGXS = $(shell pg_config --pgxs)
 
18
include $(PGXS)
 
19
else
 
20
subdir = contrib/pgstattuple
 
21
top_builddir = ../..
 
22
include $(top_builddir)/src/Makefile.global
 
23
include $(top_srcdir)/contrib/contrib-global.mk
 
24
endif
 
25