1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00
Andrew Tridgell ba2f726efd - added typedefs
- added parse error checking
- made parser more flexible
(This used to be commit ab0beaf3573471fab1fda3358987b337811f99b7)
2000-05-17 06:53:21 +00:00

14 lines
166 B
Bash
Executable File

#!/bin/sh
file=$1
if ! igawk -f main.awk $file; then
echo parse failed;
exit 1;
fi
echo compiling vluke
gcc -Wall -g -o vluke parser.c vluke.c
echo done.