18 lines
343 B
Bash
Executable File
18 lines
343 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Run this build script at root
|
|
## Ex)
|
|
## $ ./scripts/build.sh
|
|
##
|
|
|
|
THIS_PATH=`dirname "$0"`
|
|
|
|
${THIS_PATH}/build_any.sh KissMeConsole
|
|
${THIS_PATH}/build_any.sh KissMeIndex
|
|
${THIS_PATH}/build_any.sh KissMeMatrix
|
|
${THIS_PATH}/build_any.sh KissMeGolder
|
|
|
|
#${THIS_PATH}/build_any.sh KissMeBatch
|
|
#${THIS_PATH}/build_any.sh KissGram
|
|
|