lila/bin/install-stockfish
Thibault Duplessis 8222aa0d42 deploy to hexal
2014-09-24 21:39:14 +02:00

15 lines
234 B
Bash
Executable file

#!/bin/sh
mkdir -p local
cd local
rm -rf Stockfish
git clone https://github.com/ddugovic/Stockfish
cd Stockfish/src
if [[ $1 = "old" ]]; then
make build ARCH=x86-64
else
make build ARCH=x86-64-modern
fi
./stockfish quit
cd ../..