chiark / gitweb /
Strip X-Complaints-To too
[modbot-mtm.git] / stump / c / compile
1 #!/bin/sh
2
3 # define your compiler
4 CC=cc
5
6 for i in checkquot antivirus cuthead isbinary; do
7   echo -n Compiling $i.c with $CC...
8   if $CC -o ../bin/$i $i.c; then
9     echo \b\b\b done
10   else
11     echo ""
12   fi
13 done