9 lines
71 B
Bash
Executable file
9 lines
71 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
set -ex
|
|
|
|
pushd "raylib-5.5/src"
|
|
make clean
|
|
make
|
|
popd
|
|
|