the order of assembler parameters were changed, because some compiler like SDCC requires the output file at the last place.

This commit is contained in:
matsutsuka 2007-09-06 01:09:53 +00:00
parent e04e128a59
commit ee76163a8c

View file

@ -123,7 +123,7 @@ endif
ifndef CUSTOM_RULE_S_TO_OBJECTDIR_O
$(OBJECTDIR)/%.o: %.S
$(AS) $(ASFLAGS) $< -o $@
$(AS) $(ASFLAGS) -o $@ $<
endif
ifndef CUSTOM_RULE_C_TO_O