• Marc G. Fournier's avatar
    · 93120330
    Marc G. Fournier authored
    Date: Sun, 16 Aug 1998 14:56:48 -0400
    From: Tom Lane <tgl@sss.pgh.pa.us>
    Attached is a patch for this weekend's work on libpq.  I've dealt
    with several issues:
    
            <for details: see message, in pgsql-patches archive for above data>
    93120330
Makefile 880 Bytes
#-------------------------------------------------------------------------
#
# Makefile.inc--
#    Makefile for src/bin (utility programs)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
#    $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.11 1998/08/17 03:50:19 scrappy Exp $
#
#-------------------------------------------------------------------------

SRCDIR= ..
include $(SRCDIR)/Makefile.global


perl-makefile-dep :=
ifeq ($(USE_PERL), true)
  perl-makefile-dep := perl5/Makefile
endif


.DEFAULT all: $(perl-makefile-dep)
	$(MAKE) -C libpq $@
#	$(MAKE) -C ecpg $@
ifeq ($(HAVE_Cplusplus), true)
	$(MAKE) -C libpq++ $@
else
	echo $(HAVE_Cplusplus): No C++
endif
ifeq ($(USE_TCL), true)
	$(MAKE) -C libpgtcl $@
endif
ifeq ($(USE_PERL), true)
	$(MAKE) -C perl5 $@
endif

perl5/Makefile: perl5/Makefile.PL
	cd perl5 && perl Makefile.PL