the other jimmy / mbed-sdk-tools

Fork of mbed-sdk-tools by mbed official

Committer:
The Other Jimmy
Date:
Wed Jan 04 11:58:24 2017 -0600
Revision:
32:8ea194f6145b
Update tools to follow mbed-os tools release 5.3.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
The Other Jimmy 32:8ea194f6145b 1 {% extends "makefile/Makefile.tmpl" %}
The Other Jimmy 32:8ea194f6145b 2
The Other Jimmy 32:8ea194f6145b 3 {% block sys_libs %}
The Other Jimmy 32:8ea194f6145b 4 {% for lib in ["-lstdc++", "-lsupc++", "-lm", "-lc", "-lgcc", "-lnosys"] -%}
The Other Jimmy 32:8ea194f6145b 5 LD_SYS_LIBS += {{lib}}
The Other Jimmy 32:8ea194f6145b 6 {% endfor %}
The Other Jimmy 32:8ea194f6145b 7 {%- endblock %}
The Other Jimmy 32:8ea194f6145b 8
The Other Jimmy 32:8ea194f6145b 9 {% block elf2bin %}
The Other Jimmy 32:8ea194f6145b 10 $(ELF2BIN) -O binary $< $@
The Other Jimmy 32:8ea194f6145b 11 {%- endblock %}
The Other Jimmy 32:8ea194f6145b 12
The Other Jimmy 32:8ea194f6145b 13 {% block elf2hex %}
The Other Jimmy 32:8ea194f6145b 14 $(ELF2BIN) -O ihex $< $@
The Other Jimmy 32:8ea194f6145b 15 {%- endblock %}