blob: 1ed5370b19adb2d27385be17355c6f04dc85faa2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CONFIGFILE_PROPER = config.mk
include $(CONFIGFILE_PROPER)
CC = $(CC_PREFIX)clang -std=c99
SANITIZE = $(CLANG_SANITIZE)
FUZZ_CFLAGS = -fsanitize=fuzzer
FUZZ_LDFLAGS = -fsanitize=fuzzer
FUZZED_CPPFLAGS = -DFUZZ
fuzz:
# These configurations will modify the library code
# so that it doesn't perform password hashing !!!!!
|