mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-25 01:18:54 +00:00
add clean_cross to makefile; update micropython submodule
This commit is contained in:
parent
754350df9e
commit
e56390c77a
7
Makefile
7
Makefile
@ -8,7 +8,7 @@ help: ## show this help
|
|||||||
vendor: ## update git submodules
|
vendor: ## update git submodules
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
|
|
||||||
build: build_stmhal build_unix ## build both stmhal and 32-bit unix micropython ports
|
build: build_stmhal build_unix build_cross ## build stmhal, 32-bit unix and mpy-cross micropython ports
|
||||||
|
|
||||||
build_stmhal: vendor ## build stmhal port
|
build_stmhal: vendor ## build stmhal port
|
||||||
make -C vendor/micropython/stmhal
|
make -C vendor/micropython/stmhal
|
||||||
@ -46,7 +46,7 @@ run: ## run unix port
|
|||||||
emu: ## run emulator
|
emu: ## run emulator
|
||||||
./emu.sh
|
./emu.sh
|
||||||
|
|
||||||
clean: clean_stmhal clean_unix ## clean all builds
|
clean: clean_stmhal clean_unix clean_cross ## clean all builds
|
||||||
|
|
||||||
clean_stmhal: ## clean stmhal build
|
clean_stmhal: ## clean stmhal build
|
||||||
make -C vendor/micropython/stmhal clean
|
make -C vendor/micropython/stmhal clean
|
||||||
@ -54,6 +54,9 @@ clean_stmhal: ## clean stmhal build
|
|||||||
clean_unix: ## clean unix build
|
clean_unix: ## clean unix build
|
||||||
make -C vendor/micropython/unix clean
|
make -C vendor/micropython/unix clean
|
||||||
|
|
||||||
|
clean_cross: ## clean mpy-cross build
|
||||||
|
make -C vendor/micropython/mpy-cross clean
|
||||||
|
|
||||||
test: ## run unit tests
|
test: ## run unit tests
|
||||||
cd src/tests ; ./run_tests.sh
|
cd src/tests ; ./run_tests.sh
|
||||||
|
|
||||||
|
2
vendor/micropython
vendored
2
vendor/micropython
vendored
@ -1 +1 @@
|
|||||||
Subproject commit d18807370a82d78410b7f80c2f1f7880f410dd68
|
Subproject commit 3f91c5658d20547d7d5211f2010b3aeabd32288e
|
Loading…
Reference in New Issue
Block a user