https://github.com/postgres/postgres
Raw File
Tip revision: 936b62ddf247c26e8cc4fca34bd8a4c2e65c09fd authored by Tom Lane on 20 June 2016, 20:23:47 UTC
Stamp 9.6beta2.
Tip revision: 936b62d
Makefile
#-------------------------------------------------------------------------
#
# Makefile for src/pl (procedural languages)
#
# Copyright (c) 1994, Regents of the University of California
#
# src/pl/Makefile
#
#-------------------------------------------------------------------------

subdir = src/pl
top_builddir = ../..
include $(top_builddir)/src/Makefile.global

SUBDIRS = plpgsql

ifeq ($(with_perl), yes)
SUBDIRS += plperl
else
ALWAYS_SUBDIRS += plperl
endif

ifeq ($(with_python), yes)
SUBDIRS += plpython
else
ALWAYS_SUBDIRS += plpython
endif

ifeq ($(with_tcl), yes)
SUBDIRS += tcl
else
ALWAYS_SUBDIRS += tcl
endif

$(recurse)
$(recurse_always)
back to top