Copied old VCMI sources to another project dir, updated them to use static libvcmi

This commit is contained in:
pelya
2013-01-05 22:43:04 +02:00
parent b23ce53038
commit 810da5591e
16 changed files with 1732 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/sh
# For some reason I'm getting errors with "make -j4"
make -k ARCH=$1 || exit 1
[ -f libapplication-$1.so ] || exit 1
[ -e libapplication.so ] || ln -s libapplication-armeabi.so libapplication.so
exit 0