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