trezor-core/Makefile

106 lines
3.5 KiB
Makefile
Raw Normal View History

2016-05-11 05:39:28 -07:00
.PHONY: vendor
2016-10-12 09:29:01 -07:00
JOBS=4
MAKE=make -j $(JOBS)
BOOTLOADER_BUILD_DIR=micropython/bootloader/build
2017-03-20 07:41:21 -07:00
LOADER_BUILD_DIR=micropython/loader/build
FIRMWARE_BUILD_DIR=micropython/firmware/build
2017-02-24 04:19:00 -08:00
TREZORHAL_PORT_OPTS=FROZEN_MPY_DIR=src DEBUG=1
UNIX_PORT_OPTS=MICROPY_FORCE_32BIT=1 MICROPY_PY_BTREE=0 MICROPY_PY_TERMIOS=0 MICROPY_PY_FFI=0 MICROPY_PY_USSL=0 MICROPY_SSL_AXTLS=0 DEBUG=1
2017-02-24 04:19:00 -08:00
CROSS_PORT_OPTS=MICROPY_FORCE_32BIT=1
2016-10-12 09:29:01 -07:00
2017-03-25 06:46:38 -07:00
## help commands:
help: ## show this help
2017-03-25 06:46:38 -07:00
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf "\033[36m make %-20s\033[0m %s\n", $$1, $$2} /^##(.*)/ {printf "\033[33m%s\n", substr($$0, 4)}' $(MAKEFILE_LIST)
## dependencies commands:
2016-05-11 05:39:28 -07:00
vendor: ## update git submodules
2017-03-28 06:25:40 -07:00
git submodule update --init
res: ## update resources
./tools/res_collect
vendorheader: ## construct default vendor header
./tools/build_vendorheader '0000000000000000000000000000000000000000000000000000000000000000:0000000000000000000000000000000000000000000000000000000000000000:0000000000000000000000000000000000000000000000000000000000000000' 2 1.1 SatoshiLabs assets/satoshilabs_120.toif micropython/firmware/vendorheader.bin
2017-03-25 06:46:38 -07:00
## emulator commands:
2017-03-20 09:45:40 -07:00
run: ## run unix port
cd src ; ../vendor/micropython/unix/micropython
emu: ## run emulator
./emu.sh
2017-03-25 06:46:38 -07:00
## test commands:
2017-03-20 09:45:40 -07:00
test: ## run unit tests
cd tests ; ./run_tests.sh
testpy: ## run selected unit tests from python-trezor
cd tests ; ./run_tests_python_trezor.sh
2017-03-25 06:46:38 -07:00
## build commands:
build: build_bootloader build_loader build_firmware build_unix build_cross ## build all
2017-02-20 02:36:07 -08:00
build_bootloader: ## build bootloader
2017-03-18 04:02:39 -07:00
$(MAKE) -f Makefile.bootloader $(TREZORHAL_PORT_OPTS)
build_loader: ## build loader
2017-03-20 07:41:21 -07:00
$(MAKE) -f Makefile.loader $(TREZORHAL_PORT_OPTS)
build_firmware: res build_cross ## build firmware with frozen modules
$(MAKE) -f Makefile.firmware $(TREZORHAL_PORT_OPTS)
build_unix: ## build unix port
2017-03-07 08:50:55 -08:00
$(MAKE) -f ../../../micropython/unix/Makefile -C vendor/micropython/unix $(UNIX_PORT_OPTS)
build_cross: ## build mpy-cross port
2017-02-24 04:19:00 -08:00
$(MAKE) -C vendor/micropython/mpy-cross $(CROSS_PORT_OPTS)
2017-03-25 06:46:38 -07:00
## clean commands:
clean: clean_bootloader clean_loader clean_firmware clean_unix clean_cross ## clean all
2017-03-20 09:45:40 -07:00
clean_bootloader: ## clean bootloader build
$(MAKE) -f Makefile.bootloader clean $(TREZORHAL_PORT_OPTS)
clean_loader: ## clean loader build
$(MAKE) -f Makefile.loader clean $(TREZORHAL_PORT_OPTS)
clean_firmware: ## clean firmware build
$(MAKE) -f Makefile.firmware clean $(TREZORHAL_PORT_OPTS)
2016-04-11 08:55:10 -07:00
clean_unix: ## clean unix build
2017-03-07 08:50:55 -08:00
$(MAKE) -f ../../../micropython/unix/Makefile -C vendor/micropython/unix clean $(UNIX_PORT_OPTS)
2017-03-17 06:14:00 -07:00
# workaround for relative paths containing ../.. in unix Makefile
rm -rf vendor/micropython/micropython
2016-04-11 08:55:10 -07:00
clean_cross: ## clean mpy-cross build
2017-02-24 04:19:00 -08:00
$(MAKE) -C vendor/micropython/mpy-cross clean $(CROSS_PORT_OPTS)
2017-03-25 06:46:38 -07:00
## flash commands:
flash: flash_bootloader flash_loader flash_firmware ## flash everything using st-flash
flash_bootloader: ## flash bootloader using st-flash
st-flash write $(BOOTLOADER_BUILD_DIR)/bootloader.bin 0x08000000
2017-03-20 07:41:21 -07:00
flash_loader: ## flash loader using st-flash
st-flash write $(LOADER_BUILD_DIR)/loader.bin 0x08010000
flash_firmware: ## flash firmware using st-flash
st-flash write $(FIRMWARE_BUILD_DIR)/firmware.bin 0x08020000
2017-03-20 07:41:21 -07:00
2017-03-25 06:46:38 -07:00
## openocd debug commands:
openocd: ## start openocd which connects to the device
2016-04-27 09:45:00 -07:00
openocd -f interface/stlink-v2.cfg -f target/stm32f4x.cfg
gdb: ## start remote gdb session which connects to the openocd
2017-03-20 07:41:21 -07:00
arm-none-eabi-gdb $(FIRMWARE_BUILD_DIR)/firmware.elf -ex 'target remote localhost:3333'