summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-04-13 17:09:52 -0300
committerJames Almer <jamrial@gmail.com>2017-04-13 17:17:20 -0300
commit5dba808064e7879c04d3e2fb4f10e709bedf51c2 (patch)
tree114a5bcc16c6382af987691e02bf33aa6f05d084 /tools/Makefile
parent7f933718dc557ebff19cad94842283db5ff2b74b (diff)
parent3e105d08848162b90d886bde59c010d4b0362a4b (diff)
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/Makefile')
-rw-r--r--tools/Makefile13
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)