Skip to content

Commit

Permalink
Fixed typo in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
twystd committed Feb 3, 2025
1 parent d55232b commit 7611532
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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


7 changes: 3 additions & 4 deletions breadboard/pico/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 7611532

Please sign in to comment.