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