Makefile 729 字节
Newer Older
1 2 3 4 5 6 7 8 9
#-------------------------------------------------------------------------
#
# Makefile.inc--
#    Makefile for src/bin (utility programs)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
10
#    $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.7 1998/02/17 01:47:19 scrappy Exp $
11 12 13
#
#-------------------------------------------------------------------------

B
Bruce Momjian 已提交
14 15
SRCDIR= ..
include $(SRCDIR)/Makefile.global
16 17 18

.DEFAULT all:
	$(MAKE) -C libpq $@
19
	$(MAKE) -C ecpg $@
20 21
ifeq ($(HAVE_Cplusplus), true)
	$(MAKE) -C libpq++ $@
B
Bruce Momjian 已提交
22 23
else
	echo $(HAVE_Cplusplus): No C++
24 25 26 27
endif
ifeq ($(USE_TCL), true)
	$(MAKE) -C libpgtcl $@
endif
B
Bruce Momjian 已提交
28
ifeq ($(USE_PERL), true)
29 30
	cd perl5 && perl Makefile.PL
	$(MAKE) -C perl5 $@
B
Bruce Momjian 已提交
31
endif