mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-22 07:20:45 +00:00
gitignore: replace library catch-all pattern by more specific patterns
Ignoring all files that start with the name of a library matches some files that are not generated. So replace libfoo/libfoo* with patterns for static and shared libraries, pkg-config and version files.
This commit is contained in:
parent
0a07f2b346
commit
1b4f085772
11
.gitignore
vendored
11
.gitignore
vendored
@ -1,9 +1,14 @@
|
|||||||
.config
|
.config
|
||||||
.version
|
.version
|
||||||
|
*.a
|
||||||
*.o
|
*.o
|
||||||
*.d
|
*.d
|
||||||
*.exe
|
*.exe
|
||||||
*.ho
|
*.ho
|
||||||
|
*.pc
|
||||||
|
*.so
|
||||||
|
*.so.*
|
||||||
|
*.ver
|
||||||
*-example
|
*-example
|
||||||
*-test
|
*-test
|
||||||
config.*
|
config.*
|
||||||
@ -21,13 +26,7 @@ doc/print_options
|
|||||||
libavcodec/*_tablegen
|
libavcodec/*_tablegen
|
||||||
libavcodec/*_tables.c
|
libavcodec/*_tables.c
|
||||||
libavcodec/*_tables.h
|
libavcodec/*_tables.h
|
||||||
libavcodec/libavcodec*
|
|
||||||
libavdevice/libavdevice*
|
|
||||||
libavfilter/libavfilter*
|
|
||||||
libavformat/libavformat*
|
|
||||||
libavutil/avconfig.h
|
libavutil/avconfig.h
|
||||||
libavutil/libavutil*
|
|
||||||
libswscale/libswscale*
|
|
||||||
tests/audiogen
|
tests/audiogen
|
||||||
tests/base64
|
tests/base64
|
||||||
tests/data
|
tests/data
|
||||||
|
Loading…
Reference in New Issue
Block a user