#------------------------------------------------------------------------- # # Makefile for src/pl (procedural languages) # # Copyright (c) 1994, Regents of the University of California # # $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.12 2000/08/31 16:12:09 petere Exp $ # #------------------------------------------------------------------------- subdir = src/pl top_builddir = ../.. include $(top_builddir)/src/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 distprep: @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done clean distclean maintainer-clean: @for dir in $(DIRS); do $(MAKE) -C $$dir $@; done