From: Diego Biurrun Date: Thu, 26 Mar 2009 17:16:11 +0000 (+0000) Subject: Remove unnecessary CFLAGS variable from output_example link command. X-Git-Tag: v0.6~5076 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ec88c74b089afa35ef06f82113f78fa6ff61c92;p=platform%2Fupstream%2Flibav.git Remove unnecessary CFLAGS variable from output_example link command. Originally committed as revision 18197 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/Makefile b/Makefile index 3beecfb..81b4af8 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ ffserver_g$(EXESUF): FF_LDFLAGS += $(FFSERVERLDFLAGS) $(CC) $(FF_LDFLAGS) -o $@ $< cmdutils.o $(FF_EXTRALIBS) output_example$(EXESUF): output_example.o $(FF_DEP_LIBS) - $(CC) $(CFLAGS) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS) + $(CC) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS) tools/%$(EXESUF): tools/%.c $(CC) $(CFLAGS) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS)