summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-07-29 11:15:34 +0000
committerBenny Prijono <bennylp@teluu.com>2006-07-29 11:15:34 +0000
commitdfc70260daca970cc1df362f26fd669d75812eb0 (patch)
tree75dabbd26e4269a51644d14d49ca1c3205584a00 /Makefile
parentd0c1e54e8d96215f0baad41f59d5ca7a3d1c4a27 (diff)
Removed pj/compat/sprintf.h from MSVC workspace, also changed "make size" to calculate .bss and .data as well.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@634 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d2482318..92fe8c92 100644
--- a/Makefile
+++ b/Makefile
@@ -34,9 +34,7 @@ size:
@echo
@for lib in $(LIBS); do \
echo "$$lib:"; \
- ar tv $$lib | awk '{print $$3 "\t" $$8}' | sort -n; \
- echo -n 'Total: '; \
- ar tv $$lib | awk '{print " + " $$3}' | xargs expr 0; \
+ size -t $$lib | awk '{print $$1 "\t" $$2 "\t" $$3 "\t" $$6}'; \
echo; \
done
@echo