From 7611532d12c6d8e2c8dcec7ec4aa5c3336887f26 Mon Sep 17 00:00:00 2001 From: twystd Date: Mon, 3 Feb 2025 12:58:03 -0800 Subject: [PATCH] Fixed typo in Makefile --- Makefile | 14 +++++++------- breadboard/pico/Makefile | 7 +++---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index cd7ae9b..7fb7f88 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,20 @@ update: - cd breadboard && make update + cd breadboard && make update update-release: - cd breadboard && make update-release + cd breadboard && make update-release build: - cd breadboard/pico && make clean && make build + cd breadboard/pico && make clean && make build build-all: - cd breadboard/pico && make build-all + cd breadboard/pico && make build-all release: - cd breadboard && make release + cd breadboard && make release publish: release - echo "Releasing version $(VERSION)" - gh release create "$(VERSION)" --draft --prerelease --title "$(VERSION)-beta" --notes-file release-notes.md + echo "Releasing version $(VERSION)" + gh release create "$(VERSION)" --draft --prerelease --title "$(VERSION)-beta" --notes-file release-notes.md diff --git a/breadboard/pico/Makefile b/breadboard/pico/Makefile index c784abd..56aae25 100644 --- a/breadboard/pico/Makefile +++ b/breadboard/pico/Makefile @@ -9,10 +9,9 @@ format: core/src/*.c core/include/*.h build: format build-all: clean build - @echo ">>>>>>>>>>>>>> BUILD-ALL <$(CREDENTIALS)>" - # cd universal && make clean && make build-all - # cd controller && make clean && make build-all - # cd emulator && make clean && make build-all + cd universal && make clean && make build-all + cd controller && make clean && make build-all + cd emulator && make clean && make build-all tty: minicom -b 115200 -o -D $(PORT)