12 lines
100 B
Plaintext
12 lines
100 B
Plaintext
|
#!/bin/bash
|
||
|
cd src
|
||
|
build $*
|
||
|
if [ $? != 0 ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd ../modules
|
||
|
buildall.py $*
|
||
|
cd ..
|
||
|
|