14 lines
160 B
Bash
Executable File
14 lines
160 B
Bash
Executable File
#!/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
|
|
|