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