From 257f00ec1ab06a2a161f535036c6512f3fc8e801 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 11 May 2016 12:03:34 +0200 Subject: [PATCH] Split global .gitignore file into per-directory files --- .gitignore | 38 +------------------------------------- doc/.gitignore | 6 ++++++ doc/doxy/.gitignore | 1 + doc/examples/.gitignore | 5 +++++ libavcodec/.gitignore | 4 ++++ libavformat/.gitignore | 1 + libavutil/.gitignore | 1 + tests/.gitignore | 8 ++++++++ tests/checkasm/.gitignore | 1 + tools/.gitignore | 9 +++++++++ 10 files changed, 37 insertions(+), 37 deletions(-) create mode 100644 doc/.gitignore create mode 100644 doc/doxy/.gitignore create mode 100644 doc/examples/.gitignore create mode 100644 libavcodec/.gitignore create mode 100644 libavformat/.gitignore create mode 100644 libavutil/.gitignore create mode 100644 tests/.gitignore create mode 100644 tests/checkasm/.gitignore create mode 100644 tools/.gitignore diff --git a/.gitignore b/.gitignore index 0d8f1fb8f8..a191731ee0 100644 --- a/.gitignore +++ b/.gitignore @@ -23,43 +23,7 @@ /avconv /avplay /avprobe +/avversion.h /config.* /coverage.info -/avversion.h -/doc/*.1 -/doc/*.html -/doc/*.pod -/doc/avoptions_codec.texi -/doc/avoptions_format.texi -/doc/doxy/html/ -/doc/examples/avcodec -/doc/examples/filter_audio -/doc/examples/metadata -/doc/examples/output -/doc/examples/transcode_aac -/doc/print_options /lcov/ -/libavformat/protocol_list.c -/libavcodec/*_tablegen -/libavcodec/*_tables.c -/libavcodec/*_tables.h -/libavcodec/bsf_list.c -/libavutil/avconfig.h -/tests/audiogen -/tests/base64 -/tests/checkasm/checkasm -/tests/data/ -/tests/pixfmts.mak -/tests/rotozoom -/tests/tiny_psnr -/tests/videogen -/tests/vsynth1/ -/tools/aviocat -/tools/cws2fws -/tools/graph2dot -/tools/ismindex -/tools/pktdumper -/tools/probetest -/tools/qt-faststart -/tools/sidxindex -/tools/trasher diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 0000000000..b05724125a --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,6 @@ +/*.1 +/*.html +/*.pod +/avoptions_codec.texi +/avoptions_format.texi +/print_options diff --git a/doc/doxy/.gitignore b/doc/doxy/.gitignore new file mode 100644 index 0000000000..ac7af2e80e --- /dev/null +++ b/doc/doxy/.gitignore @@ -0,0 +1 @@ +/html/ diff --git a/doc/examples/.gitignore b/doc/examples/.gitignore new file mode 100644 index 0000000000..3f60af76f1 --- /dev/null +++ b/doc/examples/.gitignore @@ -0,0 +1,5 @@ +/avcodec +/filter_audio +/metadata +/output +/transcode_aac diff --git a/libavcodec/.gitignore b/libavcodec/.gitignore new file mode 100644 index 0000000000..77a2ab1bd8 --- /dev/null +++ b/libavcodec/.gitignore @@ -0,0 +1,4 @@ +/*_tablegen +/*_tables.c +/*_tables.h +/bsf_list.c diff --git a/libavformat/.gitignore b/libavformat/.gitignore new file mode 100644 index 0000000000..cdc24b717f --- /dev/null +++ b/libavformat/.gitignore @@ -0,0 +1 @@ +/protocol_list.c diff --git a/libavutil/.gitignore b/libavutil/.gitignore new file mode 100644 index 0000000000..e2ac949150 --- /dev/null +++ b/libavutil/.gitignore @@ -0,0 +1 @@ +/avconfig.h diff --git a/tests/.gitignore b/tests/.gitignore new file mode 100644 index 0000000000..7ddaca2115 --- /dev/null +++ b/tests/.gitignore @@ -0,0 +1,8 @@ +/audiogen +/base64 +/data/ +/pixfmts.mak +/rotozoom +/tiny_psnr +/videogen +/vsynth1/ diff --git a/tests/checkasm/.gitignore b/tests/checkasm/.gitignore new file mode 100644 index 0000000000..9ee0e5cfc1 --- /dev/null +++ b/tests/checkasm/.gitignore @@ -0,0 +1 @@ +/checkasm diff --git a/tools/.gitignore b/tools/.gitignore new file mode 100644 index 0000000000..21202faf21 --- /dev/null +++ b/tools/.gitignore @@ -0,0 +1,9 @@ +/aviocat +/cws2fws +/graph2dot +/ismindex +/pktdumper +/probetest +/qt-faststart +/sidxindex +/trasher