blob: a0a846d214407dfc76506c036099d6743c99845e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
if type "clang" > /dev/null; then
PREF="clang"
else
PREF="gcc"
fi
CC=${CC-$PREF}
CFLAGS="-g -Wall -Wextra -std=c99 -pedantic -Wno-gnu-statement-expression"
LDFLAGS="-lm"
|