r7139: trying to reduce the number of diffs between trunk and 3.0; changing version...
[Samba/gbeck.git] / source / aparser / build
blob4cdf2901f80897f31dc7908754758e6d7782314b
1 #!/bin/sh
3 file=$1
5 if ! igawk -f main.awk $file; then
6 echo parse failed;
7 exit 1;
8 fi
10 echo compiling vluke
11 gcc -Wall -g -o vluke parser.c vluke.c util.c
12 echo done.