Fix building of object files in tools/

Fixes issue issue2408.

Originally committed as revision 25905 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2010-12-07 11:42:19 +00:00
parent 3cf8db9447
commit 4d1156cb2c
1 changed files with 1 additions and 1 deletions

View File

@ -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)