Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-03-17Make ranlib silent in brief output modeMåns Rullgård
Running ranlib is quick and uninteresting, no need to print it. Originally committed as revision 22582 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-14Fix brief make output for generated tablesMåns Rullgård
Originally committed as revision 22526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Remove .SECONDARY directiveMåns Rullgård
The presence of the .SECONDARY directive caused thing to not always be correctly rebuilt. Mentioning the object files explicitly as targets gives the desired result of make not deleting them without unpleasant side-effects. Originally committed as revision 22422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Improve version.h generationMåns Rullgård
Force version.sh to run whenever the version might have changed, regardless of what is being built. This is done by attaching the dependencies to a dummy file (.version) which is included from the makefile. As make will always attempt to rebuild any included files before considering other rules, this ensures that the real version.h is (re-)created before it is required by any source file. Originally committed as revision 22420 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Replace $(G) with more generic $(M) in silent make rulesMåns Rullgård
Originally committed as revision 22419 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Prettify make output for documentationMåns Rullgård
Originally committed as revision 22418 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Prettify make output when generating headersMåns Rullgård
Originally committed as revision 22401 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Simplify static/shared build rulesMåns Rullgård
Originally committed as revision 22394 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Remove duplicates from OBJSMåns Rullgård
Originally committed as revision 22391 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08checkheaders: skip per-arch headers not meant for direct inclusionMåns Rullgård
Some of the per-arch headers are only meant to be used through the parent header of the same name. Testing these standalone does not make sense. Originally committed as revision 22341 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Add TESTOBJS make variable for extra objects used by test appsMåns Rullgård
Originally committed as revision 22335 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Skip cmdutils_common_opts.h fragment in checkheadersMåns Rullgård
Originally committed as revision 22333 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Define HAVE_AV_CONFIG_H only when building librariesMåns Rullgård
Originally committed as revision 22294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Fix build with compilers using a separate dependency commandMåns Rullgård
Originally committed as revision 22249 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Prettify make outputMåns Rullgård
This gives brief messages from make by default. For full command echoing, add V=1 to make command line. Originally committed as revision 22244 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-27Stop make deleting intermediate files (ffmpeg.o and friends)Måns Rullgård
Originally committed as revision 22094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-26Disable suffix rulesMåns Rullgård
Most of the make builtin rules, which we do not need, are suffix rules, and we use only new-style pattern rules. Disabling suffix rules saves some time when building on slow systems. Originally committed as revision 22064 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-29Move ECFLAGS so it doesn't get added multiple timesMåns Rullgård
Originally committed as revision 21520 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-28Append ECFLAGS to CFLAGSMåns Rullgård
This makes it easy to supply extra flags on the make command line for testing purposes. Originally committed as revision 21515 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Revert r21226, it was a joke:Ramiro Polla
Get one step closer to world domination. Remove "make uninstall". Originally committed as revision 21466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Add symbol versioning for shared librariesMåns Rullgård
Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 21236 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-15Get one step closer to world domination.Ramiro Polla
Remove "make uninstall". Originally committed as revision 21226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-22Delete *.d files with make cleanMåns Rullgård
Originally committed as revision 20577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-29Add generic rules for building helpers with HOSTCCMåns Rullgård
Originally committed as revision 20412 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-23Add PIC flags early so tests they affect give correct resultsMåns Rullgård
This is mainly the checks for ebx on x86, but possibly others too. Originally committed as revision 19687 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-23Skip headers requiring external libs not present in checkheadersMåns Rullgård
Originally committed as revision 19685 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-08Generate dependencies while compiling if supported by compilerMåns Rullgård
Originally committed as revision 19609 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-08Generate dependencies when object files are builtMåns Rullgård
Originally committed as revision 19608 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-28Replace BUILD_{SHARED,STATIC} with CONFIG_ counterpartsMåns Rullgård
Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23Move output redirection of deps generation from make rule to DEPEND_CMDMåns Rullgård
Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Append the user CPPFLAGS value to the CPPFLAGS used for compilation,Stefano Sabatini
rather than prepend it. This way there is the guarantee that the included headers are those in the FFmpeg sources, rather than pre-installed headers referenced by the user CPPFLAGS. Originally committed as revision 19416 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Pass ASFLAGS to assembler instead of CFLAGSMåns Rullgård
Originally committed as revision 19412 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Allow unusual ways of specifying compiler output fileMåns Rullgård
Some compilers do not use the typical -c -o foo.o style. This allows compiler-specific equivalents to be set by the configure script. Originally committed as revision 19409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Set CFLAGS directly in config.mak instead of using OPTFLAGSMåns Rullgård
Originally committed as revision 19406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Separate C preprocessor flags into CPPFLAGS variableMåns Rullgård
Originally committed as revision 19404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29Move *.map from LIBSUFFIXES to CLEANSUFFIXES, executables on OS/2 haveDave Yeo
generated map files as well, so map files need to be removed in all places where executables are removed. patch by Dave Yeo, daveryeo telus net Originally committed as revision 18981 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-20Fix building from within subdirsMåns Rullgård
Originally committed as revision 18881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Move addition of MMX-OBJS to OBJS into common.mak instead of duplicating it.Diego Biurrun
Originally committed as revision 18478 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Always use -L flags for all subdirsMåns Rullgård
Originally committed as revision 18295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Move make rules applicable only to subdirs into subdir.makMåns Rullgård
Originally committed as revision 18294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Generalize example target rule in common.mak so that it sets a -example$(EXESUF)Diego Biurrun
suffix for all example files instead of doing this in individual Makefiles. Originally committed as revision 18217 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-26Use a wildcard match instead of a list to remove test programs.Diego Biurrun
This is robust against renames and also removes test programs not (yet) hooked up in the main Makefiles. Originally committed as revision 18193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-25Move adding the '-test$(EXESUF)' suffix to test programs into common.mak.Diego Biurrun
Originally committed as revision 18189 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-25prettyprinting cosmeticsDiego Biurrun
Originally committed as revision 18188 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Rename 'tests' target to 'testprogs'. It is too easily confused with theDiego Biurrun
'test' target and a directory named tests exists. Originally committed as revision 18165 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Add rule for building API example programs.Diego Biurrun
Originally committed as revision 18161 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-13Mark all clean targets as phony.Diego Biurrun
Originally committed as revision 17950 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-06Compile .S files with $(AS), set it in configureMåns Rullgård
Assembler files using the GNU syntax need to be processed by gcc, whichever compiler is used for C files. Originally committed as revision 17827 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-03Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally toDiego Biurrun
CFLAGS. Apparently there are some systems that do not like these definitions. Originally committed as revision 17755 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-02version.h should depend on config.mak.Diego Biurrun
The extra version string that is passed to configure is recorded in config.mak and changes to config.mak can therefore make version.h rebuilds necessary. Originally committed as revision 17730 to svn://svn.ffmpeg.org/ffmpeg/trunk