mirror of
https://github.com/livingcomputermuseum/UniBone.git
synced 2026-01-11 23:52:51 +00:00
22 lines
344 B
Bash
22 lines
344 B
Bash
#/!bin/bash
|
|
# option "-a": recompile all from scratch
|
|
# else rely on makefile rules
|
|
|
|
. compile-bbb.env
|
|
|
|
# Debugging: remote from Eclipse. Compile on BBB is release.
|
|
export MAKE_CONFIGURATION=RELEASE
|
|
|
|
cd 10.03_app_demo/2_src
|
|
|
|
if [ "$1" == "-a" ] ; then
|
|
make clean
|
|
fi
|
|
|
|
make
|
|
cd ~
|
|
|
|
echo "To run binary, call"
|
|
echo "10.03_app_demo/4_deploy/demo"
|
|
|