1997-08-16 16:56:28 -04:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makefile.inc--
|
|
|
|
|
# Makefile for src/bin (utility programs)
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
# IDENTIFICATION
|
1997-10-29 23:38:30 -05:00
|
|
|
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.3 1997/10/30 04:38:30 momjian Exp $
|
1997-08-16 16:56:28 -04:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
1997-09-16 14:47:36 -04:00
|
|
|
SRCDIR= ..
|
|
|
|
|
include $(SRCDIR)/Makefile.global
|
1997-08-16 16:56:28 -04:00
|
|
|
|
|
|
|
|
.DEFAULT all:
|
|
|
|
|
$(MAKE) -C libpq $@
|
|
|
|
|
ifeq ($(HAVE_Cplusplus), true)
|
|
|
|
|
$(MAKE) -C libpq++ $@
|
1997-09-16 14:47:36 -04:00
|
|
|
else
|
|
|
|
|
echo $(HAVE_Cplusplus): No C++
|
1997-08-16 16:56:28 -04:00
|
|
|
endif
|
|
|
|
|
ifeq ($(USE_TCL), true)
|
|
|
|
|
$(MAKE) -C libpgtcl $@
|
|
|
|
|
endif
|
|
|
|
|
|
1997-10-29 23:38:30 -05:00
|
|
|
ifeq ($(USE_PERL), true)
|
|
|
|
|
cd perl5 && perl Makefile.PL
|
|
|
|
|
$(MAKE) -C perl5 $@
|
|
|
|
|
endif
|