#!/bin/bash

OPT="-O6 -s -Wall"
[ "$1" = "-d" ] && OPT="-g -O"

gcc $OPT -DT_LINUX -o ../bavsa bavsa.c -lfftw3 -lm 
