239912fa79
test-meson-build.sh generates multiple build directories for various targets. As these follow a known pattern, and since they don't need to be tracked in git, we can add them to the gitignore file, along with the default build directory "build". Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Rami Rosen <ramirose@gmail.com>
29 lines
590 B
Plaintext
29 lines
590 B
Plaintext
# ignore hidden files
|
|
.*
|
|
|
|
# ignore generated documentation tables
|
|
doc/guides/nics/overview_table.txt
|
|
doc/guides/cryptodevs/overview_feature_table.txt
|
|
doc/guides/cryptodevs/overview_cipher_table.txt
|
|
doc/guides/cryptodevs/overview_auth_table.txt
|
|
doc/guides/cryptodevs/overview_aead_table.txt
|
|
doc/guides/compressdevs/overview_feature_table.txt
|
|
|
|
# ignore generated ctags/cscope files
|
|
cscope.out.po
|
|
cscope.out.in
|
|
cscope.out
|
|
cscope.files
|
|
GTAGS
|
|
GPATH
|
|
GRTAGS
|
|
tags
|
|
TAGS
|
|
|
|
# ignore python bytecode files
|
|
*.pyc
|
|
|
|
# ignore default build directory, and directories from test-meson-builds.sh
|
|
build
|
|
build-*
|