Fix the link target

This commit is contained in:
Fred Sundvik 2016-07-08 18:18:33 +03:00
parent ccebceeb6f
commit 1e3db59097
1 changed files with 1 additions and 1 deletions

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.