iPhone / Android targets: issue an explicit make clean every time.

Often useful to automatically wipe forgotten leftovers from a different target.
This commit is contained in:
Frank Denis 2013-09-07 17:06:56 -07:00
parent 2b3969cede
commit faf6f5cbc1
2 changed files with 3 additions and 1 deletions

View File

@ -43,5 +43,6 @@ export PREFIX="$(pwd)/libsodium-android"
--disable-pie \
--disable-shared \
--prefix="$PREFIX" && \
make -j3 install &&
make clean && \
make -j3 install && \
echo "libsodium has been installed into $PREFIX"

View File

@ -11,5 +11,6 @@ export PREFIX="$(pwd)/libsodium-ios"
./configure --host=arm-apple-darwin10 \
--disable-shared \
--prefix="$PREFIX" && \
make clean && \
make -j3 install && \
echo "libsodium has been installed into $PREFIX"