aboutsummaryrefslogtreecommitdiff
path: root/src/pl/Makefile
blob: e64bf02dab28de60b6433d09211b79c5a7c6942f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#-------------------------------------------------------------------------
#
# Makefile for src/pl (procedural languages)
#
# Copyright (c) 1994, Regents of the University of California
#
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.10 2000/07/01 15:02:27 petere Exp $
#
#-------------------------------------------------------------------------

subdir = src/pl
top_builddir = ../..
include ../Makefile.global

DIRS := plpgsql

ifeq ($(USE_TCL), true)
DIRS += tcl
endif

# Disabled because it doesn't work
#ifeq ($(with_perl), yes)
#DIRS += plperl
#endif

all install installdirs uninstall depend:
	@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit 1; done

clean distclean maintainer-clean:
	@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done