diff options
author | Kali Kaneko <kali@leap.se> | 2014-03-11 12:10:15 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2014-03-11 12:10:15 -0400 |
commit | ed4fcb096c3166b76075921a484ee045e96f60b2 (patch) | |
tree | 9b683e9fd22042effaf1e6c84ded6d8fcd55b5c0 | |
parent | abfaf49d82215e1b674123cd9a395fa5ac10bc7b (diff) |
add cProfile+viewer target to Makefile
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -5,6 +5,7 @@ *.lprof *.pstats *.data +*.cprofile *.*~ .* *_rc.py @@ -72,6 +72,12 @@ manpages: apidocs: @sphinx-apidoc -o docs/api src/leap/bitmask +do_cprofile: + python -m cProfile -o bitmask.cprofile src/leap/bitmask/app.py --debug -N + +view_cprofile: + cprofilev bitmask.cprofile + mailprofile: gprof2dot -f pstats /tmp/leap_mail_profile.pstats -n 0.2 -e 0.2 | dot -Tpdf -o /tmp/leap_mail_profile.pdf |