mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-13 01:47:05 +08:00
The "check" target no longer needs to depend on "all", because it now runs "install" directly, which in turn depends on "all". Doing both will cause problems with parallel make, because two builds will run next to each other. Also remove the redirection of the temp-install output into a log file. This was appropriate when this was done from within pg_regress, but now it's just a regular make run, and especially with the above changes this will now take the place of running the "all" target before the test suites. problem report by Jeff Janes, patch in part by Michael Paquier
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
subdir = src/interfaces/ecpg
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = include pgtypeslib ecpglib compatlib preproc
|
|
|
|
# Suppress parallel build of subdirectories to avoid a bug in GNU make 3.82, cf
|
|
# http://savannah.gnu.org/bugs/?30653
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=835424
|
|
# (There are some other parallelism bugs in the subdirectory makefiles
|
|
# themselves, but there's little point in fixing them as long as we have
|
|
# to use this big hammer.)
|
|
ifeq ($(MAKE_VERSION),3.82)
|
|
.NOTPARALLEL:
|
|
endif
|
|
|
|
$(recurse)
|
|
|
|
all-pgtypeslib-recurse all-ecpglib-recurse all-compatlib-recurse all-preproc-recurse: all-include-recurse
|
|
all-compatlib-recurse: all-ecpglib-recurse
|
|
all-ecpglib-recurse: all-pgtypeslib-recurse
|
|
install-pgtypeslib-recurse install-ecpglib-recurse install-compatlib-recurse install-preproc-recurse: install-include-recurse
|
|
install-compatlib-recurse: install-ecpglib-recurse
|
|
install-ecpglib-recurse: install-pgtypeslib-recurse
|
|
|
|
clean distclean maintainer-clean:
|
|
$(MAKE) -C test clean
|
|
|
|
check checktcp installcheck:
|
|
$(MAKE) -C test $@
|