]> granicus.if.org Git - postgresql/blob - src/pl/Makefile
perltidy: Add option --nooutdent-long-comments
[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 # src/pl/Makefile
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/pl
12 top_builddir = ../..
13 include $(top_builddir)/src/Makefile.global
14
15 SUBDIRS = plpgsql
16
17 ifeq ($(with_perl), yes)
18 SUBDIRS += plperl
19 else
20 ALWAYS_SUBDIRS += plperl
21 endif
22
23 ifeq ($(with_python), yes)
24 SUBDIRS += plpython
25 else
26 ALWAYS_SUBDIRS += plpython
27 endif
28
29 ifeq ($(with_tcl), yes)
30 SUBDIRS += tcl
31 else
32 ALWAYS_SUBDIRS += tcl
33 endif
34
35 $(recurse)
36 $(recurse_always)