blob: b38fbd9bb9397ac5760b84c741f60e7ed0825023 (
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 $CFLAGS"
LDFLAGS="$LDFLAGS"
|