]> granicus.if.org Git - postgresql/blob - src/pl/Makefile
Allow compile to finish even if plperl fails, which it does now.
[postgresql] / src / pl / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile
4 #    Makefile for src/pl (procedural languages)
5 #
6 # Copyright (c) 1994, Regents of the University of California
7 #
8 #
9 # IDENTIFICATION
10 #    $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.6 2000/03/27 22:39:13 momjian Exp $
11 #
12 #-------------------------------------------------------------------------
13
14 SRCDIR= ..
15 include $(SRCDIR)/Makefile.global
16
17
18 .DEFAULT all install clean dep depend distclean:
19         $(MAKE) -C plpgsql $@
20 ifeq ($(USE_TCL), true)
21         $(MAKE) -C tcl $@
22 endif
23 ifeq ($(USE_PERL), true)
24         -$(MAKE) $(MFLAGS) plperl/Makefile
25         -$(MAKE) $(MFLAGS) -C plperl $@
26 endif
27
28 plperl/Makefile: plperl/Makefile.PL
29         cd plperl && $(PERL) Makefile.PL POLLUTE=1