diff options
Diffstat (limited to 'Makefile.custom')
-rw-r--r-- | Makefile.custom | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.custom b/Makefile.custom index d0aff3799..cf3d14321 100644 --- a/Makefile.custom +++ b/Makefile.custom @@ -79,9 +79,13 @@ baseline: busybox_unstripped objsizes: busybox_unstripped $(srctree)/scripts/objsizes +.PHONY: stksizes +stksizes: busybox_unstripped + $(CROSS_COMPILE)objdump -d busybox_unstripped | $(srctree)/scripts/checkstack.pl $(ARCH) + .PHONY: bigdata bigdata: busybox_unstripped - nm --size-sort busybox_unstripped | grep -vi ' [tr] ' | tail -20 + $(CROSS_COMPILE)nm --size-sort busybox_unstripped | grep -vi ' [tr] ' # Documentation Targets .PHONY: doc |