brakeconf/build.sh

21 lines
489 B
Bash
Raw Permalink Normal View History

2023-08-29 22:33:32 +03:00
#!/bin/sh
clear
STEPS=' 4'
echo "[ 1/$STEPS] Cleaning..."
2023-08-29 22:33:32 +03:00
rm dist/* &> /dev/null
rm brakeconf &> /dev/null
echo "[ 2/$STEPS] Build GUI..."
2023-08-29 22:33:32 +03:00
python3 ./build_gui.py gui/index.html dist/index.html &> /dev/null
xxd -i -n app_html dist/index.html > src/html.h
2023-08-29 22:33:32 +03:00
# sed -i 's/unsigned char/const unsigned char/g' src/html.h
echo "[ 3/$STEPS] Compile..."
gcc -I./webui -o brakeconf src/main.c webui/libwebui-2-static.a -lserialport -ljansson
2023-08-29 22:33:32 +03:00
echo "[ 4/$STEPS] Running..."
2023-08-29 22:33:32 +03:00
./brakeconf icanthink