summaryrefslogtreecommitdiff
path: root/fftools/Makefile
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-03-09 12:11:09 +0100
committerAnton Khirnov <anton@khirnov.net>2022-03-22 18:49:43 +0100
commita545cb2b9dc689ae19e75be27a3550d97cb9cf72 (patch)
tree4074549ecb789ec648c77decc348f682186b5405 /fftools/Makefile
parentc99b93c5d53d8f4a4f1fafc90f3dfc51467ee02e (diff)
downloadffmpeg-a545cb2b9dc689ae19e75be27a3550d97cb9cf72.tar.gz
fftools/cmdutils: split common option handlers into their own file
Diffstat (limited to 'fftools/Makefile')
-rw-r--r--fftools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/Makefile b/fftools/Makefile
index da420786eb..5ebf50d42e 100644
--- a/fftools/Makefile
+++ b/fftools/Makefile
@@ -12,7 +12,7 @@ ALLAVPROGS_G = $(AVBASENAMES:%=%$(PROGSSUF)_g$(EXESUF))
OBJS-ffmpeg += fftools/ffmpeg_opt.o fftools/ffmpeg_filter.o fftools/ffmpeg_hw.o
define DOFFTOOL
-OBJS-$(1) += fftools/cmdutils.o fftools/$(1).o $(OBJS-$(1)-yes)
+OBJS-$(1) += fftools/cmdutils.o fftools/opt_common.o fftools/$(1).o $(OBJS-$(1)-yes)
$(1)$(PROGSSUF)_g$(EXESUF): $$(OBJS-$(1))
$$(OBJS-$(1)): | fftools
$$(OBJS-$(1)): CFLAGS += $(CFLAGS-$(1))