postgresql/src/pl/Makefile

30 lines
732 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile for src/pl (procedural languages)
#
# Copyright (c) 1994, Regents of the University of California
#
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.16 2000/10/24 17:03:46 tgl Exp $
#
#-------------------------------------------------------------------------
subdir = src/pl
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
DIRS := plpgsql
ifeq ($(with_tcl), yes)
DIRS += tcl
endif
2000-09-25 14:43:24 +02:00
#ifeq ($(with_perl), yes)
DIRS += plperl
2000-09-25 14:43:24 +02:00
#endif
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