compute and display the call tree

This commit is contained in:
tTh 2024-08-11 10:32:10 +02:00
parent 1762a35868
commit e2b830b537
2 changed files with 13 additions and 0 deletions

1
Lib/.gitignore vendored
View File

@ -1,3 +1,4 @@
*.png
cflow.txt

12
Lib/utility.sh Executable file
View 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