mirror of https://github.com/ARMmbed/mbed-os.git
9 lines
180 B
Cheetah
9 lines
180 B
Cheetah
|
{% extends "makefile/Makefile.tmpl" %}
|
||
|
|
||
|
{% block elf2bin %}
|
||
|
$(ELF2BIN) --bin --output $@ $<
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block elf2hex %}
|
||
|
$(ELF2BIN) --i32 --output $@ $<
|
||
|
{%- endblock %}
|