mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-08 03:39:25 -04:00

Add a proper script which builds the fuzzed programs and runs the fuzzer. Also make all compression levels get fuzzed.
12 lines
137 B
Makefile
12 lines
137 B
Makefile
SRC := $(wildcard */*.c)
|
|
EXE := $(SRC:.c=)
|
|
|
|
LDLIBS := -ldeflate
|
|
LDFLAGS := -L../..
|
|
CPPFLAGS := -I../..
|
|
|
|
all:$(EXE)
|
|
|
|
clean:
|
|
rm -f $(EXE)
|