STM8: Correct IAR Makefile object paths for SREC build.

This commit is contained in:
Kelvin Lawson
2010-06-03 23:00:20 +01:00
parent 5635706d4b
commit babfd6b9c5

View File

@@ -99,7 +99,7 @@ $(BUILD_DIR):
# Test HEX files (one application build for each test)
$(TEST_S19S): %.s19: %.elf
@echo Building $@
$(HEX) $(BUILD_DIR)/$< $(BUILD_DIR)/$@ --srec
$(HEX) $(BUILD_DIR)/$(notdir $<) $(BUILD_DIR)/$@ --srec
# Test ELF files (one application build for each test)
$(TEST_ELFS): %.elf: %.o $(KERNEL_OBJECTS) $(PERIPH_OBJECTS) $(APP_OBJECTS) $(APP_ASM_OBJECTS)