forked from jaildesigner-jailgames/coffee_crisis
8 lines
458 B
Bash
Executable File
8 lines
458 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
cd source
|
|
/opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ -g -D_GCWZERO -O2 -I/opt/gcw0-toolchain/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/include/SDL2 -D_GNU_SOURCE=1 -D_REENTRANT -lSDL2 -lSDL2_mixer -std=c++11 *.cpp -o coffee_crisis_gcw0
|
|
mv coffee_crisis_gcw0 ../bin/coffee_crisis
|
|
cd ..
|
|
/opt/gcw0-toolchain/usr/bin/mksquashfs ./default.gcw0.desktop ./icon.png ./bin ./data ./media coffee_crisis.opk -all-root -noappend -no-exports -no-xattrs
|