1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00
semantic/prototype/script/tree-sitter.sh
2015-10-26 15:49:44 -04:00

18 lines
205 B
Bash
Executable File

#!/bin/bash
cd `dirname $0`/../External/tree-sitter
case "$1" in
""|build)
script/configure.sh
make "$PRODUCT_NAME"
;;
clean)
script/clean.sh
;;
*)
echo "I don't know how to '$1'"
exit 1
;;
esac