Skip to content

Instantly share code, notes, and snippets.

View hiroshihorie's full-sized avatar
😸
Space meow meow

Hiroshi Horie hiroshihorie

😸
Space meow meow
View GitHub Profile
#!/bin/sh
if [ ! -n "$1" ]; then
echo "Usage: $0 'debug' | 'release'"
exit 0
fi
MODE=$1
OUT_DIR=./out-$MODE
DEBUG="false"
if [ "$MODE" == "debug" ]; then