14 lines
160 B
Bash
14 lines
160 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
## Run this build script at root
|
||
|
|
## Ex)
|
||
|
|
## $ ./scripts/build.sh
|
||
|
|
##
|
||
|
|
|
||
|
|
THIS_PATH=`dirname "$0"`
|
||
|
|
|
||
|
|
mkdir -p bin
|
||
|
|
|
||
|
|
${THIS_PATH}/build_any.sh KissMeme
|
||
|
|
|