~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

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