mirror of https://github.com/ARMmbed/mbed-os.git
Fix goals for NRF51_DK makefile:
Now "all" depend on the project merged with the soft device, the goal merged has been renamed into the file it generate and now depend on the realization of $(PROJECT).hexpull/2345/head
parent
0320f3b89e
commit
80f296202c
|
@ -1,7 +1,7 @@
|
||||||
{% extends "gcc_arm_common.tmpl" %}
|
{% extends "gcc_arm_common.tmpl" %}
|
||||||
|
|
||||||
{% block target_all %}
|
{% block target_all %}
|
||||||
all: $(PROJECT).bin $(PROJECT).hex size merge
|
all: $(PROJECT).bin $(PROJECT)-combined.hex size
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block additional_variables %}
|
{% block additional_variables %}
|
||||||
|
@ -13,6 +13,6 @@ SREC_CAT = srec_cat
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block additional_targets %}
|
{% block additional_targets %}
|
||||||
merge:
|
$(PROJECT)-combined.hex: $(PROJECT).hex
|
||||||
$(SREC_CAT) $(SOFTDEVICE) -intel $(PROJECT).hex -intel -o $(PROJECT)-combined.hex -intel --line-length=44
|
$(SREC_CAT) $(SOFTDEVICE) -intel $(PROJECT).hex -intel -o $(PROJECT)-combined.hex -intel --line-length=44
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue