mirror of
https://github.com/github/semantic.git
synced 2024-11-24 08:54:07 +03:00
18 lines
205 B
Bash
Executable File
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
|