head	1.2;
access;
symbols
	REL9_0_0:1.2
	REL9_1_ALPHA1:1.2
	REL9_0_RC1:1.2
	REL9_0_BETA4:1.2
	REL9_0_STABLE:1.2.0.14
	REL9_0_BETA3:1.2
	REL9_0_BETA2:1.2
	REL8_4_4:1.2
	REL9_0_BETA1:1.2
	REL9_0_ALPHA5_BRANCH:1.2.0.12
	REL9_0_ALPHA5:1.2
	REL8_4_3:1.2
	REL9_0_ALPHA4:1.2
	REL9_0_ALPHA4_BRANCH:1.2.0.10
	REL8_5_ALPHA3:1.2
	REL8_5_ALPHA3_BRANCH:1.2.0.8
	REL8_4_2:1.2
	REL8_5_ALPHA2:1.2
	REL8_5_ALPHA2_BRANCH:1.2.0.6
	REL8_4_1:1.2
	REL8_5_ALPHA1:1.2
	REL8_5_ALPHA1_BRANCH:1.2.0.4
	REL8_4_STABLE:1.2.0.2
	REL8_4_0:1.2
	REL8_4_RC2:1.2
	REL8_4_RC1:1.2
	REL8_4_BETA2:1.2
	REL8_4_BETA1:1.2;
locks; strict;
comment	@# @;


1.2
date	2009.02.24.10.06.32;	author petere;	state Exp;
branches;
next	1.1;

1.1
date	2008.12.19.16.25.17;	author petere;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Add the possibility to specify an explicit validator function for foreign-data
wrappers (similar to procedural languages).  This way we don't need to retain
the nearly empty libraries, and we are more free in how to implement the
wrapper API in the future.
@
text
@#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for foreign
#
# IDENTIFICATION
#    $PostgreSQL: pgsql/src/backend/foreign/Makefile,v 1.1 2008/12/19 16:25:17 petere Exp $
#
#-------------------------------------------------------------------------

subdir = src/backend/foreign
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global

OBJS= foreign.o

include $(top_srcdir)/src/backend/common.mk
@


1.1
log
@SQL/MED catalog manipulation facilities

This doesn't do any remote or external things yet, but it gives modules
like plproxy and dblink a standardized and future-proof system for
managing their connection information.

Martin Pihlak and Peter Eisentraut
@
text
@d7 1
a7 1
#    $PostgreSQL$
a17 8

FDW = dummy postgresql

$(addsuffix -fdw,all install installdirs uninstall distprep):
	for dir in $(FDW); do $(MAKE) -C $$dir `echo $@@ | sed 's/-fdw$$//'` || exit; done

clean distclean maintainer-clean:
	for dir in $(FDW); do $(MAKE) -C $$dir $@@ || exit; done
@

