diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-09-27 05:01:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-09-27 05:01:57 +0000 |
commit | 9bce82fa00271920cc2497989834dd35301e4580 (patch) | |
tree | 425b876f62161c8d85944fea7e84537174da2e84 | |
parent | 766a4a99e2f5835aba413490c0efb68328d5dd21 (diff) | |
download | ffmpeg-9bce82fa00271920cc2497989834dd35301e4580.tar.gz |
Add alltools target to build all the tools/ stuff.
Originally committed as revision 15438 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |