1#!/bin/sh
2
3file=$1
4
5if ! igawk -f main.awk $file; then
6    echo parse failed;
7    exit 1;
8fi
9
10echo compiling vluke
11gcc -Wall -g -o vluke parser.c vluke.c util.c
12echo done.
13
14