This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[jra/samba/.git] / source3 / aparser / build
1 #!/bin/sh
2
3 file=$1
4
5 if ! igawk -f main.awk $file; then
6     echo parse failed;
7     exit 1;
8 fi
9
10 echo compiling vluke
11 gcc -Wall -g -o vluke parser.c vluke.c util.c
12 echo done.
13