mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-19 13:03:44 +00:00
17 lines
266 B
Makefile
17 lines
266 B
Makefile
CC=clang
|
|
|
|
CFLAGS=-g3 -fsanitize=fuzzer -fsanitize=address
|
|
|
|
all: broken.exe fixed.exe
|
|
|
|
broken.exe: simple.c
|
|
$(CC) $(CFLAGS) simple.c -o broken.exe
|
|
|
|
fixed.exe: simple.c
|
|
$(CC) $(CFLAGS) simple.c -o fixed.exe -DFIXED
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f broken.exe fixed.exe
|