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