ScreenTranslator/scripts/make_all.sh

20 lines
370 B
Bash
Raw Normal View History

#!/bin/bash
source ./options.sh $@
cleanupDirInNeeded $WORK_DIR
echo "Running all scripts for $PLATFORM"
#./install_deps $@
#./get_tessdata.sh $@
2015-10-25 20:22:37 +07:00
#./get_deps.sh $@
#./make_deps.sh $@
./make_app.sh $@
if [ "$PLATFORM" == "linux" ]; then
./make_deb.sh $@
fi
if [ "$PLATFORM" == "mingw" ]; then
./make_iss.sh $@
fi
./make_sf.sh $@
echo "All scripts successfully run"