]> granicus.if.org Git - postgresql/blobdiff - src/pl/Makefile
Translation updates
[postgresql] / src / pl / Makefile
index 18cfeffc3205d7629cdabf4fa4b0c0c2d31f34b4..c4a0d1cd07abdef10d3dec960415bbfc49790e8f 100644 (file)
@@ -4,7 +4,7 @@
 #
 # Copyright (c) 1994, Regents of the University of California
 #
-# $PostgreSQL: pgsql/src/pl/Makefile,v 1.22 2003/11/29 19:52:12 pgsql Exp $
+# src/pl/Makefile
 #
 #-------------------------------------------------------------------------
 
@@ -12,22 +12,25 @@ subdir = src/pl
 top_builddir = ../..
 include $(top_builddir)/src/Makefile.global
 
-DIRS := plpgsql
-
-ifeq ($(with_tcl), yes)
-DIRS += tcl
-endif
+SUBDIRS = plpgsql
 
 ifeq ($(with_perl), yes)
-DIRS += plperl
+SUBDIRS += plperl
+else
+ALWAYS_SUBDIRS += plperl
 endif
 
 ifeq ($(with_python), yes)
-DIRS += plpython
+SUBDIRS += plpython
+else
+ALWAYS_SUBDIRS += plpython
 endif
 
-all install installdirs uninstall depend distprep:
-       @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
+ifeq ($(with_tcl), yes)
+SUBDIRS += tcl
+else
+ALWAYS_SUBDIRS += tcl
+endif
 
-clean distclean maintainer-clean:
-       @for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
+$(recurse)
+$(recurse_always)