diff options
Diffstat (limited to 'src/interfaces/Makefile.in')
-rw-r--r-- | src/interfaces/Makefile.in | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/src/interfaces/Makefile.in b/src/interfaces/Makefile.in deleted file mode 100644 index 3752b4d51a1..00000000000 --- a/src/interfaces/Makefile.in +++ /dev/null @@ -1,64 +0,0 @@ -#------------------------------------------------------------------------- -# -# Makefile for src/interfaces -# -# Copyright (c) 1994, Regents of the University of California -# -# $Header: /cvsroot/pgsql/src/interfaces/Attic/Makefile.in,v 1.4 2000/06/20 16:39:54 petere Exp $ -# -#------------------------------------------------------------------------- - -srcdir = @srcdir@ -VPATH = @srcdir@ - -top_srcdir = @top_srcdir@ -top_builddir = ../.. -subdir = src/interfaces - -USE_TCL = @USE_TCL@ -enable_odbc = @enable_odbc@ -with_CXX = @with_CXX@ -with_perl = @with_perl@ -with_python = @with_python@ - -all install clean dep depend: - $(MAKE) -C libpq $@ - $(MAKE) -C ecpg $@ -ifeq ($(with_CXX), yes) - $(MAKE) -C libpq++ $@ -endif - $(MAKE) -C libpgeasy $@ -ifeq ($(USE_TCL), true) - $(MAKE) -C libpgtcl $@ -endif -ifeq ($(with_perl), yes) - $(MAKE) -C perl5 $@ -endif -ifeq ($(with_python), yes) - $(MAKE) -C python $@ -endif -ifeq ($(enable_odbc), yes) - $(MAKE) -C odbc $@ -endif - -distclean maintainer-clean: clean - -$(MAKE) -C perl5 $@ - -$(MAKE) -C python $@ - -$(MAKE) -C odbc $@ - rm -f Makefile \ - libpq/Makefile \ - ecpg/lib/Makefile \ - ecpg/preproc/Makefile \ - libpq++/Makefile \ - libpgeasy/Makefile \ - libpgtcl/Makefile - - -.PHONY: all install dep depend clean distclean maintainer-clean - - -Makefile: Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status - -$(top_builddir)/config.status: $(top_srcdir)/configure - cd $(top_builddir) && ./config.status --recheck |