Clone of official tools

export/makefile/make-gcc-arm.tmpl

Committer:
Anders Blomdell
Date:
2021-02-04
Revision:
47:21ae3e5a7128
Parent:
40:7d3fa6b99b2b

File content as of revision 47:21ae3e5a7128:

{% extends "makefile/Makefile.tmpl" %}

{%- block sys_libs -%} -Wl,--start-group {{ld_sys_libs|join(" ")}} {{libraries|join(" ")}} -Wl,--end-group {%- endblock -%}

{% block elf2bin %}
	$(ELF2BIN) -O binary $< $@
{%- endblock %}

{% block elf2hex %}
	$(ELF2BIN) -O ihex $< $@
{%- endblock %}