mirror of https://github.com/ARMmbed/mbed-os.git
Remove include from assember in makefile exporter
The build system does not do this, so this is a consistency fixpull/5415/head
parent
7b2e9b1ad1
commit
cbc3d83f83
|
|
@ -101,10 +101,10 @@ all: $(PROJECT).bin $(PROJECT).hex size
|
|||
+@$(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 @@ all: $(PROJECT).bin $(PROJECT).hex size
|
|||
+@$(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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue