1 2 3 4 5 6 7 8
#!/bin/sh OPTS='-DENABLE_ASSERT=1' CFLAGS='-g -Wall -Wextra' LIBS='-lm' set -x clang -o example $CFLAGS $OPTS example.c $LIBS