mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
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.
10 lines
204 B
Bash
Executable file
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.$@
|