mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 02:26:29 +03:00
15 lines
351 B
Bash
15 lines
351 B
Bash
#!/bin/sh
|
|
|
|
cd $(dirname "$0")/../
|
|
|
|
rm libeepp-armv7.a
|
|
|
|
rm libeepp-i386.a
|
|
|
|
rm libeepp.a
|
|
|
|
make -j2 -e IOS=yes NO_SNDFILE=yes STATIC_FT2=yes SIMULATOR=yes DEBUGBUILD=yes GLES1=yes
|
|
|
|
make -j2 -e IOS=yes NO_SNDFILE=yes STATIC_FT2=yes SIMULATOR=no DEBUGBUILD=yes GLES1=yes
|
|
|
|
lipo -create -arch armv7 libeepp-armv7.a -arch i386 libeepp-i386.a -output libeepp.a |