mirror of
https://github.com/xemu-project/nxdk_pgraph_tests.git
synced 2024-11-26 19:40:45 +00:00
15 lines
181 B
Bash
15 lines
181 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
eval "$(./third_party/nxdk/bin/activate -s)"
|
||
|
|
||
|
set -eu
|
||
|
set -o pipefail
|
||
|
|
||
|
cd third_party/nxdk/samples
|
||
|
for x in *; do
|
||
|
pushd "${x}"
|
||
|
make -j24
|
||
|
popd
|
||
|
done
|