mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-29 13:03:37 +01:00
fxsdk: add smart build commands (#1)
This commit is contained in:
parent
32239c3dfe
commit
c4f659071c
1 changed files with 87 additions and 2 deletions
|
@ -29,6 +29,12 @@ error() {
|
||||||
echo "Try 'fxsdk --help' for more information." >&2
|
echo "Try 'fxsdk --help' for more information." >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
status() {
|
||||||
|
echo -ne "\n\e[34;1m::\e[39;1m "
|
||||||
|
echo -n "$@"
|
||||||
|
echo -e "\e[0m\n"
|
||||||
|
}
|
||||||
|
|
||||||
# TODO: Finish this interface
|
# TODO: Finish this interface
|
||||||
fxsdk_new_project_cli() {
|
fxsdk_new_project_cli() {
|
||||||
internal=
|
internal=
|
||||||
|
@ -108,15 +114,94 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
fxsdk_build() {
|
fxsdk_build() {
|
||||||
true
|
built=
|
||||||
|
|
||||||
|
if [[ -e build-fx ]]; then
|
||||||
|
status "Making into build-fx"
|
||||||
|
make all-fx
|
||||||
|
built=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -e build-cg ]]; then
|
||||||
|
status "Making into build-cg"
|
||||||
|
make all-cg
|
||||||
|
built=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
[[ $built ]] && return
|
||||||
|
|
||||||
|
echo "No build files currently exist. Which platform do I compile for?"
|
||||||
|
echo ""
|
||||||
|
echo '"fx": fx-9860G II, Graph 35+ USB/E/E II, Graph 75+'
|
||||||
|
echo '"cg": fx-CG 10/20/50, Graph 90+E'
|
||||||
|
echo ""
|
||||||
|
echo "Leave blank to cancel."
|
||||||
|
|
||||||
|
platform=
|
||||||
|
while true; do
|
||||||
|
echo -n '> '
|
||||||
|
read platform
|
||||||
|
[[ -z $platform ]] && return
|
||||||
|
|
||||||
|
if [[ $platform == "fx" ]]; then
|
||||||
|
status "Making into build-fx"
|
||||||
|
make all-fx
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $platform == "cg" ]]; then
|
||||||
|
status "Making into build-fx"
|
||||||
|
make all-cg
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e 'Unknown platform (valid names are "fx" and "cg")\n'
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
fxsdk_build_fx() {
|
||||||
|
status "Making into build-fx"
|
||||||
|
make all-fx
|
||||||
|
}
|
||||||
|
|
||||||
|
fxsdk_build_cg() {
|
||||||
|
startus "Making into build-cg"
|
||||||
|
make all-cg
|
||||||
|
}
|
||||||
|
|
||||||
|
fxsdk_install_fx() {
|
||||||
|
make install-fx
|
||||||
|
}
|
||||||
|
|
||||||
|
fxsdk_install_cg() {
|
||||||
|
# TODO
|
||||||
|
echo "error: this is tricky and not implemented yet, sorry x_x"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Parse command name
|
# Parse command name
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
new)
|
|
||||||
|
# Project creation
|
||||||
|
"new")
|
||||||
shift
|
shift
|
||||||
fxsdk_new_project_interactive "$@";;
|
fxsdk_new_project_interactive "$@";;
|
||||||
|
|
||||||
|
# Project compilation
|
||||||
|
"build")
|
||||||
|
fxsdk_build;;
|
||||||
|
"build-fx")
|
||||||
|
fxsdk_build_fx;;
|
||||||
|
"build-cg")
|
||||||
|
fxsdk_build_cg;;
|
||||||
|
|
||||||
|
# Install
|
||||||
|
"install-fx")
|
||||||
|
fxsdk_install_fx;;
|
||||||
|
"install-cg")
|
||||||
|
fxsdk_install_cg;;
|
||||||
|
|
||||||
|
# Misc
|
||||||
-h|--help|-\?)
|
-h|--help|-\?)
|
||||||
usage 0;;
|
usage 0;;
|
||||||
?*)
|
?*)
|
||||||
|
|
Loading…
Reference in a new issue