sbcl.sbcl/contrib/build-contrib
Stas Boukarev 8e83783838 Parallel make-target-contrib
Use a Makefile with dependencies to allow building the contribs in
parallel.
SBCL_MAKE_JOBS=-jX controls the number of jobs, the same as for the C
runtime.
2019-11-28 15:54:15 +03:00

10 lines
204 B
Bash
Executable file

#!/bin/sh
mkdir -p ../obj/asdf-cache/$@/
if $GNUMAKE -j1 -C $@ test < /dev/null 2>&1 && touch ../obj/asdf-cache/$@/test-passed.test-report ; then
:
else
exit $?
fi | tee ../output/building-contrib.$@