mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 22:33:50 -05:00
31 lines
720 B
Makefile
31 lines
720 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# 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.3 1997/10/30 04:38:30 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ..
|
|
include $(SRCDIR)/Makefile.global
|
|
|
|
.DEFAULT all:
|
|
$(MAKE) -C libpq $@
|
|
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)
|
|
cd perl5 && perl Makefile.PL
|
|
$(MAKE) -C perl5 $@
|
|
endif
|