diff options
| author | Peter Eisentraut | 2009-02-24 10:06:36 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2009-02-24 10:06:36 +0000 |
| commit | 7babccb91504fd4a958ff778547af1a8cbc1f8f2 (patch) | |
| tree | ce41105b1add6e2c61ae7acc8e3ee6c2175a41af /src/backend/foreign/Makefile | |
| parent | f73bed308a8ccaea9082634f417966f7beb71614 (diff) | |
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.
Diffstat (limited to 'src/backend/foreign/Makefile')
| -rw-r--r-- | src/backend/foreign/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/backend/foreign/Makefile b/src/backend/foreign/Makefile index b3cc209c161..dff0c775403 100644 --- a/src/backend/foreign/Makefile +++ b/src/backend/foreign/Makefile @@ -4,7 +4,7 @@ # Makefile for foreign # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/foreign/Makefile,v 1.1 2008/12/19 16:25:17 petere Exp $ +# $PostgreSQL: pgsql/src/backend/foreign/Makefile,v 1.2 2009/02/24 10:06:32 petere Exp $ # #------------------------------------------------------------------------- @@ -15,11 +15,3 @@ include $(top_builddir)/src/Makefile.global OBJS= foreign.o include $(top_srcdir)/src/backend/common.mk - -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 |
