#!/bin/bash

OPT='-Wall -W -O2 -s '
LIBS=' -lasound '

gcc $OPT test_case.c $LIBS -o test_case || exit 1
