mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
ba2f726efd
- added parse error checking - made parser more flexible (This used to be commit ab0beaf3573471fab1fda3358987b337811f99b7)
14 lines
166 B
Bash
Executable File
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.
|
|
|