summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-01-26 18:41:20 +0000
committerDiego Biurrun <diego@biurrun.de>2008-01-26 18:41:20 +0000
commit1521c500da63bef79da2bc664cfa96eebbccacfd (patch)
tree5d2a15ff97d95c882a920796b3abd3dabc3b8411 /Makefile
parent2b258bbaadb191aa0cf11ac910521e05890596c7 (diff)
Merge rules for tools/* into a generic rule.
Originally committed as revision 11620 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 2 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index a71cb60149..fea2760ea6 100644
--- a/Makefile
+++ b/Makefile
@@ -107,17 +107,8 @@ version.h:
output_example$(EXESUF): output_example.o .libs
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(EXTRALIBS)
-tools/pktdumper$(EXESUF): tools/pktdumper.c
- $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(EXTRALIBS)
-
-tools/qt-faststart$(EXESUF): tools/qt-faststart.c
- $(CC) $(CFLAGS) $< -o $@
-
-tools/cws2fws$(EXESUF): tools/cws2fws.c
- $(CC) $(CFLAGS) $< -o $@ -lz
-
-tools/trasher$(EXESUF): tools/trasher.c
- $(CC) $(CFLAGS) $< -o $@
+tools/%$(EXESUF): tools/%.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(EXTRALIBS)
ffplay.o: CFLAGS += $(SDL_CFLAGS)