david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[build] Automatically sort the list of constituent object sizes

This commit is contained in:
Michael Brown 2009-04-18 16:19:29 +01:00
parent ead44dba89
commit a1eb4ffdf7
1 changed files with 2 additions and 1 deletions

View File

@ -658,7 +658,8 @@ endef
$(BIN)/%.objs : $(BIN)/%.tmp
$(Q)$(ECHO) $(call objs_list,$<)
$(BIN)/%.sizes : $(BIN)/%.tmp
$(Q)$(SIZE) -t $(foreach OBJ,$(call objs_list,$<),$(BIN)/$(OBJ).o)
$(Q)$(SIZE) -t $(foreach OBJ,$(call objs_list,$<),$(BIN)/$(OBJ).o) | \
sort -g
# Get dependency list for the specified target
#