- patch from Denis Vlasenko to make sizes PHONY and to add objsizes which prints
  the sizes of the individual object files.
diff --git a/Makefile b/Makefile
index 977df5d..bcf25fe 100644
--- a/Makefile
+++ b/Makefile
@@ -136,6 +136,7 @@
 	@echo '  randconfig		- generate a random configuration'
 	@echo '  release		- create a distribution tarball'
 	@echo '  sizes			- show size of all enabled busybox symbols'
+	@echo '  objsizes		- show size of each .o object built'
 	@echo
 
 
@@ -349,9 +350,14 @@
 	bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
 	$(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
 
+.PHONY: sizes
 sizes: busybox_unstripped
 	$(NM) --size-sort $(<)
 
+.PHONY: objsizes
+objsizes: busybox_unstripped
+	$(SHELL) $(top_srcdir)/scripts/objsizes
+
 # Documentation Targets
 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html