compute and display the call tree
This commit is contained in:
parent
1762a35868
commit
e2b830b537
1
Lib/.gitignore
vendored
1
Lib/.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
|
||||
*.png
|
||||
cflow.txt
|
||||
|
||||
|
12
Lib/utility.sh
Executable file
12
Lib/utility.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
SRC="testtga.c essais.c operat.c image.c effects.c tele_2.c calculs.c"
|
||||
SRC="$SRC dither.c television.c"
|
||||
|
||||
FLOW="cflow.txt"
|
||||
|
||||
cflow --depth=5 -o $FLOW -m main --number $SRC
|
||||
|
||||
less $FLOW
|
Loading…
Reference in New Issue
Block a user