From 79155e4f242c10b7ffdf3fb31033576ee8626372 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Sat, 3 Nov 2018 16:42:26 -0600 Subject: Applied recent updates to FSM build scripts, and added some really simple Makefiles. --- spaghetti-monster/anduril/Makefile | 7 +++++++ spaghetti-monster/anduril/build-all.sh | 2 +- spaghetti-monster/rampingios/Makefile | 7 +++++++ spaghetti-monster/rampingios/build-all.sh | 2 +- 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 spaghetti-monster/anduril/Makefile create mode 100644 spaghetti-monster/rampingios/Makefile diff --git a/spaghetti-monster/anduril/Makefile b/spaghetti-monster/anduril/Makefile new file mode 100644 index 0000000..25c56fa --- /dev/null +++ b/spaghetti-monster/anduril/Makefile @@ -0,0 +1,7 @@ +all: + ./build-all.sh + +clean: + rm -f *.hex *~ *.elf *.o + +.phony: clean diff --git a/spaghetti-monster/anduril/build-all.sh b/spaghetti-monster/anduril/build-all.sh index 9e2a83c..68d32fb 100755 --- a/spaghetti-monster/anduril/build-all.sh +++ b/spaghetti-monster/anduril/build-all.sh @@ -18,6 +18,6 @@ for TARGET in \ FW3A \ ; do echo "===== $TARGET =====" - ../../../bin/build-85.sh "$UI" "-DFSM_${TARGET}_DRIVER" + ../../../bin/build.sh 85 "$UI" "-DFSM_${TARGET}_DRIVER" mv -f "$UI".hex "$UI".$TARGET.hex done diff --git a/spaghetti-monster/rampingios/Makefile b/spaghetti-monster/rampingios/Makefile new file mode 100644 index 0000000..8db198e --- /dev/null +++ b/spaghetti-monster/rampingios/Makefile @@ -0,0 +1,7 @@ +all: + ./build-all.sh + +clean: + rm -f *.hex cfg-*.h *~ *.elf *.o + +.phony: clean diff --git a/spaghetti-monster/rampingios/build-all.sh b/spaghetti-monster/rampingios/build-all.sh index 22597b7..5b75fe4 100755 --- a/spaghetti-monster/rampingios/build-all.sh +++ b/spaghetti-monster/rampingios/build-all.sh @@ -13,6 +13,6 @@ for TARGET in \ EMISAR_D4S_219C \ ; do echo "===== $TARGET =====" - ../../../bin/build-85.sh "$UI" "-DFSM_${TARGET}_DRIVER" + ../../../bin/build.sh 85 "$UI" "-DFSM_${TARGET}_DRIVER" mv -f "$UI".hex "$UI".$TARGET.hex done -- cgit v1.2.3