diff options
author | Rob Landley <rob@landley.net> | 2005-09-01 02:40:21 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-09-01 02:40:21 +0000 |
commit | ac692b2cf7e4fc10430a193e8a489507429356de (patch) | |
tree | 4da88e988845f292a2f0ecfcd98051bf20b67cef /Makefile | |
parent | 91397707645a63cf2e8290d21f5fc5e41dfa4a25 (diff) | |
download | busybox-w32-ac692b2cf7e4fc10430a193e8a489507429356de.tar.gz busybox-w32-ac692b2cf7e4fc10430a193e8a489507429356de.tar.bz2 busybox-w32-ac692b2cf7e4fc10430a193e8a489507429356de.zip |
Bernhard Fischer sent a patch to make "make sizes" work when building in
another output directory.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -154,8 +154,9 @@ check: busybox | |||
154 | $(top_srcdir)/testsuite/runtest | 154 | $(top_srcdir)/testsuite/runtest |
155 | 155 | ||
156 | sizes: | 156 | sizes: |
157 | rm -f busybox | 157 | -rm -f busybox |
158 | make STRIPCMD=/bin/true | 158 | $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \ |
159 | -f $(top_srcdir)/Makefile STRIPCMD=/bin/true | ||
159 | nm --size-sort busybox | 160 | nm --size-sort busybox |
160 | # Documentation Targets | 161 | # Documentation Targets |
161 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html | 162 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html |