Remove include from assember in makefile exporter

The build system does not do this, so this is a consistency fix
pull/5415/head
Jimmy Brisson 2017-11-01 09:26:25 -05:00
parent 7b2e9b1ad1
commit cbc3d83f83
1 changed files with 6 additions and 6 deletions

View File

@ -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: