4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-18 06:59:13 +08:00

* Makefile.in (NOTPARALLEL): New. Use it instead of explicit

.NOTPARALLEL tag.
        (do-check): Rename from check.
        (check): Allow parallel check.
This commit is contained in:
Richard Henderson 2002-03-13 01:19:29 +00:00
parent c53d845331
commit 2b1c041081
2 changed files with 81 additions and 70 deletions

@ -1,3 +1,10 @@
2002-03-12 Richard Henderson <rth@redhat.com>
* Makefile.in (NOTPARALLEL): New. Use it instead of explicit
.NOTPARALLEL tag.
(do-check): Rename from check.
(check): Allow parallel check.
2002-03-11 Richard Henderson <rth@redhat.com>
* Makefile.in (.NOTPARALLEL): Add fake tag.

@ -18,10 +18,11 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# Tell GNU make 2.79 not to run the top level in parallel. This
# Tell GNU make 3.79 not to run the top level in parallel. This
# prevents contention for $builddir/$target/config.cache, as well
# as minimizing scatter in file system caches.
.NOTPARALLEL:
NOTPARALLEL = .NOTPARALLEL
$(NOTPARALLEL):
srcdir = .
@ -1123,8 +1124,11 @@ clean-target-libgcc:
# Check target.
.PHONY: check
check: $(CHECK_MODULES) \
.PHONY: check do-check
check:
$(MAKE) do-check NOTPARALLEL=parallel-ok
do-check: $(CHECK_MODULES) \
$(CHECK_TARGET_MODULES) \
$(CHECK_X11_MODULES) \
check-gcc