aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-26 10:10:25 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-26 10:10:25 +0000
commit06a81d368eea88428fbce186f1e01a16673066b7 (patch)
tree4994d059a1a7f5cce8f152a436418cb1359b2a26 /Makefile
parent5fe8d5b9c5930497ecf47817ec3af66bebec52c0 (diff)
downloadbusybox-06a81d368eea88428fbce186f1e01a16673066b7.tar.gz
- patch from Denis Vlasenko to make sizes PHONY and to add objsizes which prints
the sizes of the individual object files.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 977df5d4e..bcf25fe6d 100644
--- a/Makefile
+++ b/Makefile
@@ -136,6 +136,7 @@ help:
@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 @@ check test: busybox
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