8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd vendor_cryptopp && \
|
|
mkdir -p build/$1 && \
|
|
TestScripts/setenv-android.sh 21 $1 && \
|
|
make -f GNUmakefile-cross static && \
|
|
mv libcryptopp.a build/$1
|