1 2 3 4 5 6 7 8 9
#!/usr/bin/env sh CFLAGS="-Wall -Wextra -std=c11 -ggdb" SRC="main.c" OUT="main.out" set -xe cc $CFLAGS -o $OUT $SRC;