]> granicus.if.org Git - postgresql/blob - src/pl/Makefile
Add distprep target to take some of the job of the release_prep script.
[postgresql] / src / pl / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for src/pl (procedural languages)
4 #
5 # Copyright (c) 1994, Regents of the University of California
6 #
7 # $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.11 2000/07/19 16:30:16 petere Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/pl
12 top_builddir = ../..
13 include ../Makefile.global
14
15 DIRS := plpgsql
16
17 ifeq ($(USE_TCL), true)
18 DIRS += tcl
19 endif
20
21 # Disabled because it doesn't work
22 #ifeq ($(with_perl), yes)
23 #DIRS += plperl
24 #endif
25
26 all install installdirs uninstall depend distprep:
27         @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
28
29 clean distclean maintainer-clean:
30         @for dir in $(DIRS); do $(MAKE) -C $$dir $@; done