mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-14 00:37:21 +00:00
9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
rm bootloader/.obj/f*/flash || true
|
|
make -C bootloader -j9 flash
|
|
|
|
rm firmware/.obj/f*/flash || true
|
|
make -C firmware -j9 APP_RELEASE=1 flash
|