diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-26 17:16:11 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-26 17:16:11 +0000 |
commit | 3ec88c74b089afa35ef06f82113f78fa6ff61c92 (patch) | |
tree | a80a05fe482ea89a1c6016e236965666392f7a3f /Makefile | |
parent | 219a7185a0c614eb175cf4111af12c40f4a819c8 (diff) | |
download | ffmpeg-3ec88c74b089afa35ef06f82113f78fa6ff61c92.tar.gz |
Remove unnecessary CFLAGS variable from output_example link command.
Originally committed as revision 18197 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |