mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
24 lines
450 B
Bash
Executable File
24 lines
450 B
Bash
Executable File
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# use included genie if it isn't found in PATH
|
|
GENIE_BIN=$(which genie)
|
|
if [ -z "$GENIE_BIN" -o ! -x "$GENIE_BIN" ]; then
|
|
GENIE_BIN=$(pwd)"/genie-linux"
|
|
fi
|
|
|
|
# default
|
|
ACTION="gmake"
|
|
if [ ! -z "$1" ]; then
|
|
ACTION="$1"
|
|
fi
|
|
|
|
if [[ "$ACTION" = "clean" ]]; then
|
|
rm -rf gmake
|
|
else
|
|
$GENIE_BIN $ACTION > /dev/null
|
|
if [[ "$ACTION" = "gmake" ]]; then
|
|
cd gmake
|
|
make
|
|
fi
|
|
fi
|