Preliminary main mbed library for nexpaq development
tools/export/gcc_arm_ty51822r3.tmpl@1:d96dbedaebdb, 2016-11-04 (annotated)
- Committer:
- nexpaq
- Date:
- Fri Nov 04 20:54:50 2016 +0000
- Revision:
- 1:d96dbedaebdb
- Parent:
- 0:6c56fb4bc5f0
Removed extra directories for other platforms
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nexpaq | 0:6c56fb4bc5f0 | 1 | {% extends "gcc_arm_common.tmpl" %} |
nexpaq | 0:6c56fb4bc5f0 | 2 | |
nexpaq | 0:6c56fb4bc5f0 | 3 | {% block target_all %} |
nexpaq | 0:6c56fb4bc5f0 | 4 | all: $(PROJECT).bin $(PROJECT)-combined.hex size |
nexpaq | 0:6c56fb4bc5f0 | 5 | {% endblock %} |
nexpaq | 0:6c56fb4bc5f0 | 6 | |
nexpaq | 0:6c56fb4bc5f0 | 7 | {% block additional_variables %} |
nexpaq | 0:6c56fb4bc5f0 | 8 | SOFTDEVICE = {% for f in hex_files %}{{f}} {% endfor %} |
nexpaq | 0:6c56fb4bc5f0 | 9 | {% endblock %} |
nexpaq | 0:6c56fb4bc5f0 | 10 | |
nexpaq | 0:6c56fb4bc5f0 | 11 | {% block additional_executables %} |
nexpaq | 0:6c56fb4bc5f0 | 12 | SREC_CAT = srec_cat |
nexpaq | 0:6c56fb4bc5f0 | 13 | {% endblock %} |
nexpaq | 0:6c56fb4bc5f0 | 14 | |
nexpaq | 0:6c56fb4bc5f0 | 15 | {% block additional_targets %} |
nexpaq | 0:6c56fb4bc5f0 | 16 | $(PROJECT)-combined.hex: $(PROJECT).hex |
nexpaq | 0:6c56fb4bc5f0 | 17 | $(SREC_CAT) $(SOFTDEVICE) -intel $(PROJECT).hex -intel -o $(PROJECT)-combined.hex -intel --line-length=44 |
nexpaq | 0:6c56fb4bc5f0 | 18 | {% endblock %} |