Skip to content

Commit

Permalink
STM8: Correct IAR Makefile object paths for SREC build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelvin Lawson committed Jun 3, 2010
1 parent 5635706 commit babfd6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/stm8/iar.mak
Expand Up @@ -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)
Expand Down

0 comments on commit babfd6b

Please sign in to comment.