2024-08-11 19:32:10 +11:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
SRC="testtga.c essais.c operat.c image.c effects.c tele_2.c calculs.c"
|
2024-08-15 22:39:00 +11:00
|
|
|
SRC="$SRC dither.c television.c rgbmask.c sobel4.c tga.c patterns*.c"
|
|
|
|
echo $SRC ; echo
|
2024-08-11 19:32:10 +11:00
|
|
|
|
|
|
|
FLOW="cflow.txt"
|
|
|
|
|
|
|
|
cflow --depth=5 -o $FLOW -m main --number $SRC
|
|
|
|
|
|
|
|
less $FLOW
|