Fix a compiler warning in initStringInfo().
[pgsql.git] / src / pl / Makefile
blobc4a0d1cd07abdef10d3dec960415bbfc49790e8f
1 #-------------------------------------------------------------------------
3 # Makefile for src/pl (procedural languages)
5 # Copyright (c) 1994, Regents of the University of California
7 # src/pl/Makefile
9 #-------------------------------------------------------------------------
11 subdir = src/pl
12 top_builddir = ../..
13 include $(top_builddir)/src/Makefile.global
15 SUBDIRS = plpgsql
17 ifeq ($(with_perl), yes)
18 SUBDIRS += plperl
19 else
20 ALWAYS_SUBDIRS += plperl
21 endif
23 ifeq ($(with_python), yes)
24 SUBDIRS += plpython
25 else
26 ALWAYS_SUBDIRS += plpython
27 endif
29 ifeq ($(with_tcl), yes)
30 SUBDIRS += tcl
31 else
32 ALWAYS_SUBDIRS += tcl
33 endif
35 $(recurse)
36 $(recurse_always)