10 lines
127 B
Bash
Executable file
10 lines
127 B
Bash
Executable file
# Build script for BECS
|
|
|
|
if [[ ! -d ./build ]]; then
|
|
mkdir "./build"
|
|
fi
|
|
|
|
pushd "./build"
|
|
gcc -g "../test/main.c" -o test
|
|
popd
|