Clone of official tools

Committer:
The Other Jimmy
Date:
Wed Feb 15 13:53:18 2017 -0600
Revision:
35:da9c89f8be7d
Parent:
31:8ea194f6145b
Child:
40:7d3fa6b99b2b
Update tools to mbed-os 5.3.5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
The Other Jimmy 31:8ea194f6145b 1 {% extends "makefile/Makefile.tmpl" %}
The Other Jimmy 31:8ea194f6145b 2
The Other Jimmy 35:da9c89f8be7d 3 {%- block sys_libs -%} -Wl,--start-group {{ld_sys_libs|join(" ")}} -Wl,--end-group {%- endblock -%}
The Other Jimmy 31:8ea194f6145b 4
The Other Jimmy 31:8ea194f6145b 5 {% block elf2bin %}
The Other Jimmy 31:8ea194f6145b 6 $(ELF2BIN) -O binary $< $@
The Other Jimmy 31:8ea194f6145b 7 {%- endblock %}
The Other Jimmy 31:8ea194f6145b 8
The Other Jimmy 31:8ea194f6145b 9 {% block elf2hex %}
The Other Jimmy 31:8ea194f6145b 10 $(ELF2BIN) -O ihex $< $@
The Other Jimmy 31:8ea194f6145b 11 {%- endblock %}