aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster/fireflies-ui/build-all.sh
diff options
context:
space:
mode:
authorSelene ToyKeeper2019-03-12 00:26:53 -0600
committerSelene ToyKeeper2019-03-12 00:26:53 -0600
commitafdd12955841217ee8b95f8378204deb2fcdad34 (patch)
tree877fd5a29b6952aa68ce201370c36bc6bce33e11 /spaghetti-monster/fireflies-ui/build-all.sh
parentmerged trunk (diff)
downloadanduril-afdd12955841217ee8b95f8378204deb2fcdad34.tar.gz
anduril-afdd12955841217ee8b95f8378204deb2fcdad34.tar.bz2
anduril-afdd12955841217ee8b95f8378204deb2fcdad34.zip
created directory for Fireflies UI
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