mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
943340a5a3
(This used to be commit 5f1e8422d0
)
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.
|
|
|