Makefile 730 字节
Newer Older
1 2 3 4 5 6
#-------------------------------------------------------------------------
#
# Makefile for src/pl (procedural languages)
#
# Copyright (c) 1994, Regents of the University of California
#
7
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.17 2000/10/24 19:31:13 tgl Exp $
8 9 10 11 12
#
#-------------------------------------------------------------------------

subdir = src/pl
top_builddir = ../..
13
include $(top_builddir)/src/Makefile.global
14 15 16

DIRS := plpgsql

17
ifeq ($(with_tcl), yes)
18 19 20
DIRS += tcl
endif

21
ifeq ($(with_perl), yes)
22
DIRS += plperl
23
endif
24

25 26
all install installdirs uninstall depend distprep:
	@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
27

28
clean distclean maintainer-clean:
29
	@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done