2000-06-26 20:32:06 -04:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makefile for src/pl (procedural languages)
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
#
|
2001-08-26 20:29:49 -04:00
|
|
|
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.21 2001/08/27 00:29:49 petere Exp $
|
2000-06-26 20:32:06 -04:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
subdir = src/pl
|
|
|
|
|
top_builddir = ../..
|
2000-08-31 12:12:35 -04:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
2000-06-26 20:32:06 -04:00
|
|
|
|
|
|
|
|
DIRS := plpgsql
|
|
|
|
|
|
2000-09-25 18:23:01 -04:00
|
|
|
ifeq ($(with_tcl), yes)
|
2000-06-26 20:32:06 -04:00
|
|
|
DIRS += tcl
|
|
|
|
|
endif
|
|
|
|
|
|
2000-10-24 15:31:13 -04:00
|
|
|
ifeq ($(with_perl), yes)
|
2000-10-24 13:03:46 -04:00
|
|
|
DIRS += plperl
|
2000-10-24 15:31:13 -04:00
|
|
|
endif
|
2000-06-26 20:32:06 -04:00
|
|
|
|
2001-08-26 20:29:49 -04:00
|
|
|
ifeq ($(with_python), yes)
|
|
|
|
|
DIRS += plpython
|
|
|
|
|
endif
|
2001-05-09 15:54:38 -04:00
|
|
|
|
2000-07-19 12:30:27 -04:00
|
|
|
all install installdirs uninstall depend distprep:
|
|
|
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
2000-06-26 20:32:06 -04:00
|
|
|
|
2000-07-01 11:02:31 -04:00
|
|
|
clean distclean maintainer-clean:
|
2000-06-26 20:32:06 -04:00
|
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
|