mirror of
https://github.com/samba-team/samba.git
synced 2025-01-19 10:03:58 +03:00
14 lines
163 B
Bash
Executable File
14 lines
163 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 -o vluke parser.c vluke.c
|
|
echo done.
|
|
|