diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-19 21:20:06 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-19 21:20:06 +0000 |
commit | bd046b99f03811f992571c47c47f2cecfe38df0c (patch) | |
tree | 02e42477545d0508272a1d25376bcf4d1d609cd0 /src/interfaces | |
parent | 163edee6323bfc4abab09fbe20786d6a5dc970f8 (diff) |
Remove JDBC from the build system and documentation, too.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile index 052d66dd143..1fa91d5375d 100644 --- a/src/interfaces/Makefile +++ b/src/interfaces/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.51 2003/11/29 19:52:08 pgsql Exp $ +# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.52 2004/01/19 21:20:06 tgl Exp $ # #------------------------------------------------------------------------- @@ -14,16 +14,12 @@ include $(top_builddir)/src/Makefile.global DIRS := libpq ecpg -ALLDIRS := $(DIRS) libpgtcl jdbc +ALLDIRS := $(DIRS) libpgtcl ifeq ($(with_tcl), yes) DIRS += libpgtcl endif -ifeq ($(with_java), yes) -DIRS += jdbc -endif - all install installdirs uninstall dep depend distprep: @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done |