summaryrefslogtreecommitdiff
path: root/src/pl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/Makefile')
-rw-r--r--src/pl/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pl/Makefile b/src/pl/Makefile
index 33bd501bca2..50957951af8 100644
--- a/src/pl/Makefile
+++ b/src/pl/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.17 2000/10/24 19:31:13 tgl Exp $
+# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.18 2001/05/09 19:54:38 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -22,6 +22,10 @@ ifeq ($(with_perl), yes)
DIRS += plperl
endif
+ifeq ($(with_python), yes)
+DIRS += plpython
+endif
+
all install installdirs uninstall depend distprep:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done