aboutsummaryrefslogtreecommitdiffstats
path: root/out/config.sh
blob: 75035a76f90cd14870e703a79758148b00acde6d (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=""