postgresql/src/pl/Makefile

34 lines
778 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile for src/pl (procedural languages)
#
# Copyright (c) 1994, Regents of the University of California
#
2003-11-29 20:52:15 +01:00
# $PostgreSQL: pgsql/src/pl/Makefile,v 1.22 2003/11/29 19:52:12 pgsql Exp $
#
#-------------------------------------------------------------------------
subdir = src/pl
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
DIRS := plpgsql
ifeq ($(with_tcl), yes)
DIRS += tcl
endif
ifeq ($(with_perl), yes)
DIRS += plperl
endif
ifeq ($(with_python), yes)
DIRS += plpython
endif
2001-05-09 21:54:38 +02:00
all install installdirs uninstall depend distprep:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
clean distclean maintainer-clean:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done