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
2012-12-10build: fix 'clean' targetMans Rullgard
This fixes removal of TOOLS as well as HOSTPROGS declared in the top-level Makefile. The clean target in common.mak needs to be eval'd since the variables used within are reset for each library. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-25build: Include HEADERS-yes in the HEADERS variableMartin Storsjö
This makes sure the previously always installed public header lzo.h is installed if the LZO functionality is enabled. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-16build: Properly remove object files while cleaningMans Rullgard
Previously, object files in, for example, compat/ were left after a clean or distclean was run. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2012-08-29build: allow non-standard variations of linker -l/-L flagsMans Rullgard
This enables replacing the -l and -L flags used to specify the just-built libraries when linking the tools and shared libs with non-standard syntaxes. System library flags are already handled by the filtering mechanism in configure. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-29build: add separate setting for host linkerMans Rullgard
This adds new HOSTLD and related settings for host linker allowing it to be different from HOSTCC. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-27build: Use portable abstraction for linker/hostcc output file syntaxDiego Biurrun
2012-08-08build: change checkheaders to use regular build rulesMans Rullgard
Many compilers need special flags to compile *.h files as regular source code, if they will do so at all. Rather than hoping all compilers will have such a flag and adding mappings for it, create wrapper .c files for test building single headers. This allows using the regular rule for compiling C files without the need for special flags, and it also provides proper dependency tracking for these objects. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-27build: use COMPILE template for HOSTOBJSMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-05build: Drop leftover .exp pattern from LIBSUFFIXES list.Diego Biurrun
2012-04-12build: Consistently handle conditional compilation for all optimization OBJS.Diego Biurrun
2011-07-11build: remove unnecessary FFLDFLAGS variableMans Rullgard
This variable is set to the same value for all directories. Adding the -L flags directly to LDFLAGS is simpler and achieves the same thing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-11build: remove duplicates from order-only directory prerequisite listDiego Biurrun
This reduces startup latency for make invocations, which is especially noticeable on systems that are slow or have slow I/O, like Windows.
2011-07-11build: rework rules for things in the tools dirMans Rullgard
Declaring tools associated with each library in their respective makefiles allows these tools to easily depend on the correct prerequisites and link against the libs they need. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-29build: create output directories as neededMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-28build: replace some addprefix/addsuffix with substitution refsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move basic rules and variables to main MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move special targets to end of main MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-14build: move vpath directives to main MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-14build: move ALLFFLIBS to a more logical placeMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-07build: remove empty $(OBJS) targetMans Rullgard
This target was added to prevent some files being deleted by make when using chains of implicit rules. This is no longer required. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06build: clean up .PHONY listsMans Rullgard
This removes nonexisting targets from phony lists and puts them all in one place. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06build: move all (un)install* target aliases to toplevel MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06build: remove stale dependencyMans Rullgard
This dependency is implicitly covered elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06build: do not add CFLAGS-yes to CFLAGSMans Rullgard
CFLAGS-yes is never set so this serves no purpose. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-29build: remove BUILD_ROOT variableMans Rullgard
This variable is unnecessary as absolute paths are not required. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-31Include dependencies for test programsMans Rullgard
This makes sure the various *-test programs are correctly rebuilt when necessary. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-30Remove support for stripping executablesMans Rullgard
Stripping is generally best left to package management tools, and since unstripped copies are kept in the build tree, any arguments about saving space (no matter how insignificant) are void. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2010-09-04Create config.asm for use with yasmMåns Rullgård
Originally committed as revision 25039 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-17Remove dep/depend targets and related variables.Diego Biurrun
We no longer create dependency files directly, so the rules are now pointless. Originally committed as revision 24807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-21Add libavcore.Stefano Sabatini
The new library is meant to contain the core multimedia utilities for FFmpeg, to make them shareable between more libav* libraries. See thread: Subject: [FFmpeg-devel] [RFC] New library for shared non-generic libav* utils Date: Fri, 9 Jul 2010 01:07:40 +0200 Originally committed as revision 24393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-04Stop make complaining about moved/deleted headersMåns Rullgård
Originally committed as revision 24041 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-27Add -I flags to HOSTCFLAGSMåns Rullgård
Originally committed as revision 23805 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-26Fix brief make messages when CC etc are specified on command lineMåns Rullgård
Originally committed as revision 23792 to svn://svn.ffmpeg.org/ffmpeg/trunk
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