10 lines
134 B
Bash
Executable File
10 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
unset CC
|
|
. toolchain/activate.sh || exit 1
|
|
pushd userspace
|
|
make || exit 1
|
|
popd
|
|
make system || exit 1
|
|
make test || exit 1
|