Build directories commonly have compiler in their names.
In order to filter build directories not starting with "build-"
(common with make), patterns for gcc and clang are added to .gitignore.
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
# ignore default build directory, and directories from test-meson-builds.sh
build
build-*
+# ignore other build directory patterns
+*-gcc*
+*-clang*