mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08:00
will exit before failing because of conflicting DB usage. Per discussion, this seems a good idea to help mask the fact that backend exit takes nonzero time. Remove a couple of thereby-obsoleted sleeps in contrib and PL regression test sequences.
41 lines
966 B
Makefile
41 lines
966 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/pl (procedural languages)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $PostgreSQL: pgsql/src/pl/Makefile,v 1.26 2007/06/01 19:38:07 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/pl
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
DIRS = plpgsql
|
|
|
|
ifeq ($(with_perl), yes)
|
|
DIRS += plperl
|
|
endif
|
|
|
|
ifeq ($(with_python), yes)
|
|
DIRS += plpython
|
|
endif
|
|
|
|
ifeq ($(with_tcl), yes)
|
|
DIRS += tcl
|
|
endif
|
|
|
|
all install installdirs uninstall distprep:
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit 1; done
|
|
|
|
clean distclean maintainer-clean:
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
|
|
|
|
# We'd like check operations to run all the subtests before failing.
|
|
check installcheck:
|
|
@CHECKERR=0; for dir in $(DIRS); do \
|
|
$(MAKE) -C $$dir $@ || CHECKERR=$$?; \
|
|
done; \
|
|
exit $$CHECKERR
|