mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
9d7ff74a55
Add libsharpyuv dependency to fuzzer makefile. Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=49778 Change-Id: Ib03219de33a97c3d7b13d0daffbee2035f2a3bde
32 lines
987 B
Plaintext
32 lines
987 B
Plaintext
# This Makefile will compile all fuzzing targets. It doesn't check tool
|
|
# requirements and paths may need to be updated depending on your environment.
|
|
# Note a clang 6+ toolchain is assumed for use of -fsanitize=fuzzer.
|
|
|
|
CC = clang
|
|
CXX = clang++
|
|
CFLAGS = -fsanitize=fuzzer -I../../src -I../.. -Wall -Wextra
|
|
CXXFLAGS = $(CFLAGS)
|
|
LDFLAGS = -fsanitize=fuzzer
|
|
LDLIBS = ../../src/mux/libwebpmux.a ../../src/demux/libwebpdemux.a
|
|
LDLIBS += ../../src/libwebp.a ../../imageio/libimageio_util.a
|
|
LDLIBS += ../../sharpyuv/libsharpyuv.a
|
|
|
|
FUZZERS = advanced_api_fuzzer animation_api_fuzzer animencoder_fuzzer
|
|
FUZZERS += animdecoder_fuzzer mux_demux_api_fuzzer enc_dec_fuzzer
|
|
FUZZERS += simple_api_fuzzer
|
|
|
|
%.o: fuzz_utils.h img_alpha.h img_grid.h img_peak.h
|
|
all: $(FUZZERS)
|
|
|
|
define FUZZER_template
|
|
$(1): $$(addsuffix .o, $(1)) $(LDLIBS)
|
|
OBJS += $$(addsuffix .o, $(1))
|
|
endef
|
|
|
|
$(foreach fuzzer, $(FUZZERS), $(eval $(call FUZZER_template, $(fuzzer))))
|
|
|
|
clean:
|
|
$(RM) $(FUZZERS) $(OBJS)
|
|
|
|
.PHONY: all clean
|