aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster/fireflies-ui/build-all.sh
diff options
context:
space:
mode:
authorSelene ToyKeeper2019-03-18 02:56:10 -0600
committerSelene ToyKeeper2019-03-18 02:56:10 -0600
commit14de348f222527dee551128efaeaa1ae974efe54 (patch)
treee9ebfb9c8a1f48a1406cedeced424157c1ae7187 /spaghetti-monster/fireflies-ui/build-all.sh
parentMade default level configurable per build target, made moon hint blip a bit m... (diff)
parentconfigured Fireflies-EDC-Thrower discrete ramp better, updated meta info (diff)
downloadanduril-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-xspaghetti-monster/fireflies-ui/build-all.sh13
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