aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.housekeeping
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2009-04-18 16:19:29 +0100
committerMichael Brown <mcb30@etherboot.org>2009-04-18 16:20:03 +0100
commita1eb4ffdf7e2fb7761df7b28e02427b0ab7a216c (patch)
treeee70f791a6ac1a3caad354257405cba45e01aabb /src/Makefile.housekeeping
parentead44dba8942e85730d545e9696cdf31433942d4 (diff)
downloadipxe-a1eb4ffdf7e2fb7761df7b28e02427b0ab7a216c.zip
ipxe-a1eb4ffdf7e2fb7761df7b28e02427b0ab7a216c.tar.gz
ipxe-a1eb4ffdf7e2fb7761df7b28e02427b0ab7a216c.tar.bz2
[build] Automatically sort the list of constituent object sizes
Diffstat (limited to 'src/Makefile.housekeeping')
-rw-r--r--src/Makefile.housekeeping3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping
index 6751291..4502017 100644
--- a/src/Makefile.housekeeping
+++ b/src/Makefile.housekeeping
@@ -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
#