Browse Source

Fix the link target

pull/496/head
Fred Sundvik 8 years ago
parent
commit
1e3db59097
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/rules.mk

+ 1
- 1
tmk_core/rules.mk View File

@ -365,7 +365,7 @@ gccversion :
.PRECIOUS : $(OBJ)
%.elf: gccversion sizebefore check_submodule $(OBJ)
@$(SILENT) || printf "$(MSG_LINKING) $@" | $(AWK_CMD)
$(eval CMD=$(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS))
$(eval CMD=$(CC) $(ALL_CFLAGS) $(filter-out gccversion sizebefore check_submodule,$^) --output $@ $(LDFLAGS))
@$(BUILD_CMD)
# Compile: create object files from C source files.


Loading…
Cancel
Save