1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

doc/build_system: miscellaneous typo and consistency fixes

Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
Ganesh Ajjanagadde 2015-10-08 09:01:04 -04:00 committed by Stefano Sabatini
parent 979572365f
commit 8881b035d9

View File

@ -9,7 +9,7 @@ V
DBG DBG
Preprocess x86 external assembler files to a .dbg.asm file in the object Preprocess x86 external assembler files to a .dbg.asm file in the object
directory, which then gets compiled. Helps developping those assembler directory, which then gets compiled. Helps in developing those assembler
files. files.
DESTDIR DESTDIR
@ -25,10 +25,10 @@ all
Default target, builds all the libraries and the executables. Default target, builds all the libraries and the executables.
fate fate
Run the fate test suite, note you must have installed it Run the fate test suite, note that you must have installed it.
fate-list fate-list
Will list all fate/regression test targets List all fate/regression test targets.
install install
Install headers, libraries and programs. Install headers, libraries and programs.
@ -43,22 +43,22 @@ libavcodec/api-example
Build the libavcodec basic example. Build the libavcodec basic example.
libswscale/swscale-test libswscale/swscale-test
Build the swscale self-test (useful also as example). Build the swscale self-test (useful also as an example).
config config
Reconfigure the project with current configuration. Reconfigure the project with the current configuration.
Useful standard make commands: Useful standard make commands:
make -t <target> make -t <target>
Touch all files that otherwise would be build, this is useful to reduce Touch all files that otherwise would be built, this is useful to reduce
unneeded rebuilding when changing headers, but note you must force rebuilds unneeded rebuilding when changing headers, but note that you must force rebuilds
of files that actually need it by hand then. of files that actually need it by hand then.
make -j<num> make -j<num>
rebuild with multiple jobs at the same time. Faster on multi processor systems Rebuild with multiple jobs at the same time. Faster on multi processor systems.
make -k make -k
continue build in case of errors, this is useful for the regression tests Continue build in case of errors, this is useful for the regression tests
sometimes but note it will still not run all reg tests. sometimes but note that it will still not run all reg tests.