1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-11 07:50:57 +00:00

fix(core): add missing targets to make clean

[skip_ci]
This commit is contained in:
Pavol Rusnak 2021-03-22 22:06:08 +01:00
parent 048205b864
commit b37e5c916f
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -158,7 +158,7 @@ build_cross: ## build mpy-cross port
## clean commands:
clean: clean_boardloader clean_bootloader clean_prodtest clean_firmware clean_unix clean_cross ## clean all
clean: clean_boardloader clean_bootloader clean_bootloader_ci clean_prodtest clean_reflash clean_firmware clean_unix clean_cross ## clean all
rm -f ".sconsign.dblite"
clean_boardloader: ## clean boardloader build
@ -167,6 +167,9 @@ clean_boardloader: ## clean boardloader build
clean_bootloader: ## clean bootloader build
rm -rf $(BOOTLOADER_BUILD_DIR)
clean_bootloader_ci: ## clean bootloader_ci build
rm -rf $(BOOTLOADER_CI_BUILD_DIR)
clean_prodtest: ## clean prodtest build
rm -rf $(PRODTEST_BUILD_DIR)