Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: export/makefile/Makefile.tmpl
- Revision:
- 42:2cf3f29fece1
- Parent:
- 40:7d3fa6b99b2b
- Child:
- 43:2a7da56ebd24
diff -r 2a77626a4c21 -r 2cf3f29fece1 export/makefile/Makefile.tmpl --- a/export/makefile/Makefile.tmpl Wed Oct 25 14:46:50 2017 -0500 +++ b/export/makefile/Makefile.tmpl Mon Nov 06 13:17:14 2017 -0600 @@ -101,10 +101,10 @@ +@$(call MAKEDIR,$(dir $@)) +@echo "Assemble: $(notdir $<)" {% if needs_asm_preproc %} - @$(AS) -c $(ASM_FLAGS) $(INCLUDE_PATHS) -E -o $(@:.o=.E.s) $< - @$(AS) -c $(ASM_FLAGS) $(INCLUDE_PATHS) -o $@ $(@:.o=.E.s) + @$(AS) -c $(ASM_FLAGS) -E -o $(@:.o=.E.s) $< + @$(AS) -c $(ASM_FLAGS) -o $@ $(@:.o=.E.s) {% else %} - @$(AS) -c $(ASM_FLAGS) $(INCLUDE_PATHS) -o $@ $< + @$(AS) -c $(ASM_FLAGS) -o $@ $< {% endif %} @@ -112,10 +112,10 @@ +@$(call MAKEDIR,$(dir $@)) +@echo "Assemble: $(notdir $<)" {% if needs_asm_preproc %} - @$(AS) -c $(ASM_FLAGS) $(INCLUDE_PATHS) -E -o $(@:.o=.E.s) $< - @$(AS) -c $(ASM_FLAGS) $(INCLUDE_PATHS) -o $@ $(@:.o=.E.s) + @$(AS) -c $(ASM_FLAGS) -E -o $(@:.o=.E.s) $< + @$(AS) -c $(ASM_FLAGS) -o $@ $(@:.o=.E.s) {% else %} - @$(AS) -c $(ASM_FLAGS) $(INCLUDE_PATHS) -o $@ $< + @$(AS) -c $(ASM_FLAGS) -o $@ $< {% endif %} .c.o: