Ignore generated source files that are no longer checked in
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
9c58274484
commit
b5e08637ad
4 changed files with 18 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -37,6 +37,10 @@ massif-*
|
||||||
# Microsoft CMake extension for Visual Studio Code generates a build directory by default
|
# Microsoft CMake extension for Visual Studio Code generates a build directory by default
|
||||||
/build/
|
/build/
|
||||||
|
|
||||||
|
# Visual Studio automatically generated files
|
||||||
|
/visualc/VS2010/mbedTLS.sln
|
||||||
|
/visualc/VS2010/*.vcxproj
|
||||||
|
|
||||||
# Visual Studio artifacts
|
# Visual Studio artifacts
|
||||||
/visualc/VS2010/.localhistory/
|
/visualc/VS2010/.localhistory/
|
||||||
/visualc/VS2010/.vs/
|
/visualc/VS2010/.vs/
|
||||||
|
|
4
library/.gitignore
vendored
4
library/.gitignore
vendored
|
@ -2,3 +2,7 @@
|
||||||
libmbed*
|
libmbed*
|
||||||
*.sln
|
*.sln
|
||||||
*.vcxproj
|
*.vcxproj
|
||||||
|
|
||||||
|
# Automatically generated files
|
||||||
|
/error.c
|
||||||
|
/version_features.c
|
||||||
|
|
6
programs/.gitignore
vendored
6
programs/.gitignore
vendored
|
@ -5,6 +5,10 @@
|
||||||
*.sln
|
*.sln
|
||||||
*.vcxproj
|
*.vcxproj
|
||||||
|
|
||||||
|
# Generated source files
|
||||||
|
/psa/psa_constant_names_generated.c
|
||||||
|
/test/query_config.c
|
||||||
|
|
||||||
*.o
|
*.o
|
||||||
*.exe
|
*.exe
|
||||||
|
|
||||||
|
@ -66,5 +70,5 @@ x509/cert_write
|
||||||
x509/crl_app
|
x509/crl_app
|
||||||
x509/req_app
|
x509/req_app
|
||||||
|
|
||||||
# generated files
|
# Generated data files
|
||||||
pkey/keyfile.key
|
pkey/keyfile.key
|
||||||
|
|
5
tests/.gitignore
vendored
5
tests/.gitignore
vendored
|
@ -1,6 +1,11 @@
|
||||||
*.sln
|
*.sln
|
||||||
*.vcxproj
|
*.vcxproj
|
||||||
|
|
||||||
|
# Generated source files
|
||||||
|
/suites/*.generated.data
|
||||||
|
/suites/test_suite_psa_crypto_storage_format.v[0-9]*.data
|
||||||
|
/suites/test_suite_psa_crypto_storage_format.current.data
|
||||||
|
|
||||||
*.log
|
*.log
|
||||||
/test_suite*
|
/test_suite*
|
||||||
data_files/mpi_write
|
data_files/mpi_write
|
||||||
|
|
Loading…
Reference in a new issue