mirror of
https://github.com/samba-team/samba.git
synced 2024-12-29 11:21:54 +03:00
eee003da6a
so the same parser generator can be uses for cifs and rpc
(This used to be commit c7829fa0d8
)
14 lines
173 B
Bash
Executable File
14 lines
173 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 util.c
|
|
echo done.
|
|
|