~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to contrib/pgbench/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
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.12.4.1 2005-03-25 18:18:39 momjian Exp $
 
2
 
 
3
PROGRAM = pgbench
 
4
OBJS    = pgbench.o
 
5
 
 
6
PG_CPPFLAGS = -I$(libpq_srcdir)
 
7
PG_LIBS = $(libpq_pgport)
 
8
 
 
9
DOCS = README.pgbench README.pgbench_jis
 
10
 
 
11
ifdef USE_PGXS
 
12
PGXS = $(shell pg_config --pgxs)
 
13
include $(PGXS)
 
14
else
 
15
subdir = contrib/pgbench
 
16
top_builddir = ../..
 
17
include $(top_builddir)/src/Makefile.global
 
18
include $(top_srcdir)/contrib/contrib-global.mk
 
19
endif