mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-11 07:24:20 +00:00
9 lines
151 B
Bash
Executable file
9 lines
151 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 flash
|