add clean_cross to makefile; update micropython submodule

This commit is contained in:
Pavol Rusnak 2016-09-19 17:08:41 +02:00
parent 754350df9e
commit e56390c77a
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 6 additions and 3 deletions

View File

@ -8,7 +8,7 @@ help: ## show this help
vendor: ## update git submodules
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
make -C vendor/micropython/stmhal
@ -46,7 +46,7 @@ run: ## run unix port
emu: ## run emulator
./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
make -C vendor/micropython/stmhal clean
@ -54,6 +54,9 @@ clean_stmhal: ## clean stmhal build
clean_unix: ## clean unix build
make -C vendor/micropython/unix clean
clean_cross: ## clean mpy-cross build
make -C vendor/micropython/mpy-cross clean
test: ## run unit tests
cd src/tests ; ./run_tests.sh

2
vendor/micropython vendored

@ -1 +1 @@
Subproject commit d18807370a82d78410b7f80c2f1f7880f410dd68
Subproject commit 3f91c5658d20547d7d5211f2010b3aeabd32288e