mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-04-29 22:08:00 +02:00
18 lines
217 B
Bash
Executable File
18 lines
217 B
Bash
Executable File
|
|
dir=$(pwd)
|
|
|
|
rm -Rf SDL2-linux
|
|
mkdir SDL2-linux
|
|
|
|
set CC=$dir/SDL2-2.0.12-src/build-scripts/gcc-fat.sh
|
|
|
|
cd SDL2-2.0.12-src
|
|
rm -Rf build
|
|
mkdir build
|
|
cd build
|
|
|
|
../configure -prefix=$dir/SDL2-linux
|
|
|
|
make -j4
|
|
make install
|