diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-12-07 11:42:19 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-12-07 11:42:19 +0000 |
commit | 4d1156cb2c1ccc5a1f245a69adab579c1bb884c9 (patch) | |
tree | 90434e3c4422732b21e6bd73ddb9e20fb054633a /Makefile | |
parent | 3cf8db9447a6c77550033acea84e30be2af7ad2c (diff) | |
download | ffmpeg-4d1156cb2c1ccc5a1f245a69adab579c1bb884c9.tar.gz |
Fix building of object files in tools/
Fixes issue issue2408.
Originally committed as revision 25905 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ tools/%$(EXESUF): tools/%.o $(LD) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS) tools/%.o: tools/%.c - $(CC) $(CPPFLAGS) $(CFLAGS) $(CC_O) $< + $(CC) $(CPPFLAGS) $(CFLAGS) -c $(CC_O) $< ffplay.o: CFLAGS += $(SDL_CFLAGS) |