7 lines
75 B
Bash
7 lines
75 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Compiling unit tests"
|
||
|
rm -rf .dep/
|
||
|
rm -rf build/
|
||
|
make -j4
|