mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
1eaa575cf1
This directory dependency is normally added implicitly by rules in ffbuild/common.mak; for tools it's created by a rule for TOOLOBJS. TOOLOBJS is populated implicitly from TOOLS, and decode_simple.o doesn't end up there because it's an odd occurrance of a lone object file in the tools subdirectory, not belonging to any other tool. Signed-off-by: Martin Storsjö <martin@martin.st>
31 lines
819 B
Makefile
31 lines
819 B
Makefile
TOOLS = enum_options qt-faststart scale_slice_test trasher uncoded_frame
|
|
TOOLS-$(CONFIG_LIBMYSOFA) += sofa2wavs
|
|
TOOLS-$(CONFIG_ZLIB) += cws2fws
|
|
|
|
tools/target_dec_%_fuzzer.o: tools/target_dec_fuzzer.c
|
|
$(COMPILE_C) -DFFMPEG_DECODER=$*
|
|
|
|
tools/target_bsf_%_fuzzer.o: tools/target_bsf_fuzzer.c
|
|
$(COMPILE_C) -DFFMPEG_BSF=$*
|
|
|
|
tools/target_dem_%_fuzzer.o: tools/target_dem_fuzzer.c
|
|
$(COMPILE_C) -DFFMPEG_DEMUXER=$* -DIO_FLAT=0
|
|
|
|
tools/target_dem_fuzzer.o: tools/target_dem_fuzzer.c
|
|
$(COMPILE_C) -DIO_FLAT=1
|
|
|
|
tools/target_io_dem_fuzzer.o: tools/target_dem_fuzzer.c
|
|
$(COMPILE_C) -DIO_FLAT=0
|
|
|
|
tools/venc_data_dump$(EXESUF): tools/decode_simple.o
|
|
tools/scale_slice_test$(EXESUF): tools/decode_simple.o
|
|
|
|
tools/decode_simple.o: | tools
|
|
|
|
OUTDIRS += tools
|
|
|
|
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=tools/%)
|
|
|
|
-include $(wildcard tools/*.d)
|