mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
7751c06852
immunte to changes in libpq's usage of pgport between major versions. Backpatch to 8.0.X.
21 lines
478 B
Makefile
21 lines
478 B
Makefile
# $PostgreSQL: pgsql/contrib/findoidjoins/Makefile,v 1.16.4.1 2005/03/25 18:18:37 momjian Exp $
|
|
|
|
PROGRAM = findoidjoins
|
|
OBJS = findoidjoins.o
|
|
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
PG_LIBS = $(libpq_pgport)
|
|
|
|
SCRIPTS = make_oidjoins_check
|
|
DOCS = README.findoidjoins
|
|
|
|
ifdef USE_PGXS
|
|
PGXS = $(shell pg_config --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/findoidjoins
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|