1#-------------------------------------------------------------------------
2#
3# Makefile for src/pl (procedural languages)
4#
5# Copyright (c) 1994, Regents of the University of California
6#
7# src/pl/Makefile
8#
9#-------------------------------------------------------------------------
10
11subdir = src/pl
12top_builddir = ../..
13include $(top_builddir)/src/Makefile.global
14
15SUBDIRS = plpgsql
16
17ifeq ($(with_perl), yes)
18SUBDIRS += plperl
19else
20ALWAYS_SUBDIRS += plperl
21endif
22
23ifeq ($(with_python), yes)
24SUBDIRS += plpython
25else
26ALWAYS_SUBDIRS += plpython
27endif
28
29ifeq ($(with_tcl), yes)
30SUBDIRS += tcl
31else
32ALWAYS_SUBDIRS += tcl
33endif
34
35$(recurse)
36$(recurse_always)
37