From 4d1156cb2c1ccc5a1f245a69adab579c1bb884c9 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Tue, 7 Dec 2010 11:42:19 +0000 Subject: [PATCH] Fix building of object files in tools/ Fixes issue issue2408. Originally committed as revision 25905 to svn://svn.ffmpeg.org/ffmpeg/trunk --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e52d5c5b4b..ef514e8a57 100644 --- a/Makefile +++ b/Makefile @@ -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)