Mark 3rd argument of validate_tupdesc_compat() for translation, instead of
[PostgreSQL.git] / src / pl / Makefile
blob34614debbdda6660f88776fb5a794dcf50b84304
1 #-------------------------------------------------------------------------
3 # Makefile for src/pl (procedural languages)
5 # Copyright (c) 1994, Regents of the University of California
7 # $PostgreSQL$
9 #-------------------------------------------------------------------------
11 subdir = src/pl
12 top_builddir = ../..
13 include $(top_builddir)/src/Makefile.global
15 DIRS = plpgsql
17 ifeq ($(with_perl), yes)
18 DIRS += plperl
19 endif
21 ifeq ($(with_python), yes)
22 DIRS += plpython
23 endif
25 ifeq ($(with_tcl), yes)
26 DIRS += tcl
27 endif
29 all install installdirs uninstall distprep clean distclean maintainer-clean:
30 @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
32 # We'd like check operations to run all the subtests before failing.
33 check installcheck:
34 @CHECKERR=0; for dir in $(DIRS); do \
35 $(MAKE) -C $$dir $@ || CHECKERR=$$?; \
36 done; \
37 exit $$CHECKERR