mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
dec2fa8cc7
This allows fuzzing decoders with the same codec_id We also avoid register all to allow the linker to prune unused sections and symbols Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
13 lines
258 B
Makefile
13 lines
258 B
Makefile
TOOLS = qt-faststart trasher uncoded_frame
|
|
TOOLS-$(CONFIG_ZLIB) += cws2fws
|
|
|
|
tools/target_dec_%_fuzzer.o: tools/target_dec_fuzzer.c
|
|
$(COMPILE_C) -DFFMPEG_DECODER=$*
|
|
|
|
OBJDIRS += tools
|
|
|
|
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=tools/%)
|
|
|
|
-include $(wildcard tools/*.d)
|