#!/bin/sh OPTS='-DENABLE_ASSERT=1' CFLAGS='-g -Wall -Wextra' LIBS='-lm' set -x clang -o example $CFLAGS $OPTS example.c $LIBS