scyther/src/count_trampolines.sh

8 lines
140 B
Bash
Raw Normal View History

2018-10-19 19:35:56 +01:00
#!/bin/sh
make clean ; make 2>&1 |grep "warning: trampoline" | sort -u > trampolines.out
2018-10-19 19:35:56 +01:00
cat trampolines.out
echo
wc -l trampolines.out