diff options
| author | Selene ToyKeeper | 2019-03-18 02:56:10 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2019-03-18 02:56:10 -0600 |
| commit | 14de348f222527dee551128efaeaa1ae974efe54 (patch) | |
| tree | e9ebfb9c8a1f48a1406cedeced424157c1ae7187 /spaghetti-monster/fireflies-ui/build-all.sh | |
| parent | Made default level configurable per build target, made moon hint blip a bit m... (diff) | |
| parent | configured Fireflies-EDC-Thrower discrete ramp better, updated meta info (diff) | |
| download | anduril-14de348f222527dee551128efaeaa1ae974efe54.tar.gz anduril-14de348f222527dee551128efaeaa1ae974efe54.tar.bz2 anduril-14de348f222527dee551128efaeaa1ae974efe54.zip | |
merged refactoring updates
(and some unrelated stuff for Fireflies)
instead of duplicating the relevant changes
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 |
