]> granicus.if.org Git - postgresql/blob - src/pl/Makefile
Enable plperl to be built when --with-perl is selected. Dunno whether
[postgresql] / src / pl / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for src/pl (procedural languages)
4 #
5 # Copyright (c) 1994, Regents of the University of California
6 #
7 # $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.16 2000/10/24 17:03:46 tgl Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/pl
12 top_builddir = ../..
13 include $(top_builddir)/src/Makefile.global
14
15 DIRS := plpgsql
16
17 ifeq ($(with_tcl), yes)
18 DIRS += tcl
19 endif
20
21 #ifeq ($(with_perl), yes)
22 DIRS += plperl
23 #endif
24
25 all install installdirs uninstall depend distprep:
26         @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