Eric Biggers 804c6c74f6 scripts: improve afl-fuzz support
Add a proper script which builds the fuzzed programs and runs the
fuzzer.  Also make all compression levels get fuzzed.
2021-12-31 12:19:10 -06:00

12 lines
137 B
Makefile

SRC := $(wildcard */*.c)
EXE := $(SRC:.c=)
LDLIBS := -ldeflate
LDFLAGS := -L../..
CPPFLAGS := -I../..
all:$(EXE)
clean:
rm -f $(EXE)