Skip to content

Commit

Permalink
adding more build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
TooDissing committed Aug 8, 2022
1 parent ae9dd73 commit 56489d7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.venv
docs/build/*
**/**/*.log
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ all:
@$(MAKE) -C docs html
@$(MAKE) -C software esp32

esp32:
@$(MAKE) -C software esp32

clean:
@$(MAKE) -C docs clean
@$(MAKE) -C software clean
8 changes: 8 additions & 0 deletions software/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@ cli: copy-config
flash-all: esp32
@echo "flashing using this port '${JTAG_PORT}'"
cd euphonium/targets/esp32; sh flash_all.sh ${JTAG_PORT};

clean: clean-cli clean-esp32

clean-cli:
@$(MAKE) -C euphonium/targets/cli/build clean

clean-esp32:
cd euphonium/targets/esp32; idf.py fullclean;

0 comments on commit 56489d7

Please sign in to comment.