michael@0: #!/bin/sh michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: michael@0: LD_LIBRARY_PATH=. michael@0: export LD_LIBRARY_PATH michael@0: michael@0: PROG=mozilla-bin michael@0: PLIBS="" michael@0: michael@0: for l in *.so components/*.so; do michael@0: PLIBS="$PLIBS -incobj $l" michael@0: done michael@0: michael@0: $ECHO /bin/gprof -L. -Lcomponents -all $PLIBS $PROG $PROG.hiout