MMS-Loesung-2024-25/Makefile
2025-01-17 21:19:23 +01:00

21 lines
256 B
Makefile

CC=gcc
SOURCE_FILE=MMS24-25.c
OPTS=-lm -std=c99
FCC=afl-cc
all: clean tests run
clean:
rm ./tests || true
tests:
$(CC) tests.c $(SOURCE_FILE) -o tests $(OPTS)
run:
./tests
fuzz:
$(FCC) $(SOURCE_FILE) -o fuzz $(OPTS)
afl-fuzz -i in -o out ./fuzz