finalcut/scripts/profile.sh

13 lines
161 B
Bash
Raw Normal View History

2015-05-23 13:35:12 +02:00
#!/bin/bash
DIR="$PWD"
cd ../src
make clean
make profile
./finalcut
gprof ./finalcut >./profile.txt
rm ./gmon.out
less ./profile.txt
rm ./profile.txt
cd "$DIR"