diff options
author | James Almer <jamrial@gmail.com> | 2017-04-13 17:09:52 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-04-13 17:17:20 -0300 |
commit | 5dba808064e7879c04d3e2fb4f10e709bedf51c2 (patch) | |
tree | 114a5bcc16c6382af987691e02bf33aa6f05d084 /tools | |
parent | 7f933718dc557ebff19cad94842283db5ff2b74b (diff) | |
parent | 3e105d08848162b90d886bde59c010d4b0362a4b (diff) | |
download | ffmpeg-5dba808064e7879c04d3e2fb4f10e709bedf51c2.tar.gz |
Merge commit '3e105d08848162b90d886bde59c010d4b0362a4b'
* commit '3e105d08848162b90d886bde59c010d4b0362a4b':
build: Move entries related to building TOOLS to a subdirectory Makefile
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000000..f8e1434f29 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,13 @@ +TOOLS = qt-faststart trasher uncoded_frame +TOOLS-$(CONFIG_ZLIB) += cws2fws + +tools/cws2fws$(EXESUF): ELIBS = $(ZLIB) +tools/uncoded_frame$(EXESUF): $(FF_DEP_LIBS) +tools/uncoded_frame$(EXESUF): ELIBS = $(FF_EXTRALIBS) + +OBJDIRS += tools + +clean:: + $(RM) $(CLEANSUFFIXES:%=tools/%) + +-include $(wildcard tools/*.d) |