summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-09-27 05:01:57 +0000
committerDiego Biurrun <diego@biurrun.de>2008-09-27 05:01:57 +0000
commit9bce82fa00271920cc2497989834dd35301e4580 (patch)
tree425b876f62161c8d85944fea7e84537174da2e84 /Makefile
parent766a4a99e2f5835aba413490c0efb68328d5dd21 (diff)
Add alltools target to build all the tools/ stuff.
Originally committed as revision 15438 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f8caf7735a..0b1d2da217 100644
--- a/Makefile
+++ b/Makefile
@@ -75,6 +75,8 @@ tools/%$(EXESUF): tools/%.c
ffplay.o ffplay.d: CFLAGS += $(SDL_CFLAGS)
+alltools: $(addsuffix $(EXESUF),$(addprefix tools/, cws2fws pktdumper qt-faststart trasher))
+
VHOOKCFLAGS += $(filter-out -mdynamic-no-pic,$(CFLAGS))
BASEHOOKS = fish null watermark
@@ -329,6 +331,6 @@ tests/seek_test$(EXESUF): tests/seek_test.c $(FF_DEP_LIBS)
$(CC) $(FF_LDFLAGS) $(CFLAGS) -o $@ $< $(FF_EXTRALIBS)
-.PHONY: lib videohook documentation *test regtest-* swscale-error
+.PHONY: lib videohook documentation *test regtest-* swscale-error alltools
-include $(VHOOK_DEPS)