diff options
| author | Selene ToyKeeper | 2019-05-18 03:33:40 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2019-05-18 03:33:40 -0600 |
| commit | 51d53d2b30dbd3c4c585834ad81de20745740f8e (patch) | |
| tree | 6e366b5cfe97f04181bc468aa06d710b7807be1d /spaghetti-monster/fireflies-ui/build-all.sh | |
| parent | added link to HQ ProgKey, since it's increasingly important for newer drivers (diff) | |
| parent | merged in BLF Lantern branch, even though it's not quite finished, because it... (diff) | |
| download | anduril-51d53d2b30dbd3c4c585834ad81de20745740f8e.tar.gz anduril-51d53d2b30dbd3c4c585834ad81de20745740f8e.tar.bz2 anduril-51d53d2b30dbd3c4c585834ad81de20745740f8e.zip | |
merged updates from fsm branch, because it has been way too long since the last time
Diffstat (limited to 'spaghetti-monster/fireflies-ui/build-all.sh')
| -rwxr-xr-x | spaghetti-monster/fireflies-ui/build-all.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spaghetti-monster/fireflies-ui/build-all.sh b/spaghetti-monster/fireflies-ui/build-all.sh new file mode 100755 index 0000000..41d92d0 --- /dev/null +++ b/spaghetti-monster/fireflies-ui/build-all.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +cp -av ../anduril/cfg-ff*.h . + +UI=fireflies-ui + +for TARGET in cfg-*.h ; do + NAME=$(echo "$TARGET" | perl -ne '/cfg-(.*).h/ && print "$1\n";') + echo "===== $NAME =====" + echo ../../../bin/build.sh 85 "$UI" "-DCONFIGFILE=${TARGET}" + ../../../bin/build.sh 85 "$UI" "-DCONFIGFILE=${TARGET}" + mv -f "$UI".hex "$UI".$NAME.hex +done |
