1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 17:04:47 +03:00
semantic/prototype/script/tree-sitter.sh

18 lines
205 B
Bash
Raw Normal View History

2015-10-26 22:40:22 +03:00
#!/bin/bash
2015-10-26 22:42:06 +03:00
cd `dirname $0`/../External/tree-sitter
2015-10-26 22:45:51 +03:00
case "$1" in
2015-10-26 22:49:44 +03:00
""|build)
2015-10-26 22:45:51 +03:00
script/configure.sh
make "$PRODUCT_NAME"
;;
clean)
script/clean.sh
;;
*)
echo "I don't know how to '$1'"
exit 1
;;
esac