mirror of
https://github.com/samba-team/samba.git
synced 2025-02-24 13:57:43 +03:00
-
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.
|
|
|