72 lines
865 B
Plaintext
72 lines
865 B
Plaintext
|
# Created by https://www.toptal.com/developers/gitignore/api/c
|
||
|
# Edit at https://www.toptal.com/developers/gitignore?templates=c
|
||
|
|
||
|
### C ###
|
||
|
# Prerequisites
|
||
|
*.d
|
||
|
|
||
|
# Object files
|
||
|
*.o
|
||
|
*.ko
|
||
|
*.obj
|
||
|
*.elf
|
||
|
|
||
|
# Linker output
|
||
|
*.ilk
|
||
|
*.map
|
||
|
*.exp
|
||
|
|
||
|
# Precompiled Headers
|
||
|
*.gch
|
||
|
*.pch
|
||
|
|
||
|
# Libraries
|
||
|
*.lib
|
||
|
*.a
|
||
|
*.la
|
||
|
*.lo
|
||
|
|
||
|
# Shared objects (inc. Windows DLLs)
|
||
|
*.dll
|
||
|
*.so
|
||
|
*.so.*
|
||
|
*.dylib
|
||
|
|
||
|
# Executables
|
||
|
*.exe
|
||
|
*.out
|
||
|
*.app
|
||
|
*.i*86
|
||
|
*.x86_64
|
||
|
*.hex
|
||
|
|
||
|
# Debug files
|
||
|
*.dSYM/
|
||
|
*.su
|
||
|
*.idb
|
||
|
*.pdb
|
||
|
|
||
|
# Kernel Module Compile Results
|
||
|
*.mod*
|
||
|
*.cmd
|
||
|
.tmp_versions/
|
||
|
modules.order
|
||
|
Module.symvers
|
||
|
Mkfile.old
|
||
|
dkms.conf
|
||
|
|
||
|
# End of https://www.toptal.com/developers/gitignore/api/c
|
||
|
|
||
|
# Ignore all bazel-* symlinks. There is no full list since this can change
|
||
|
# based on the name of the directory bazel is cloned into.
|
||
|
/bazel-*
|
||
|
|
||
|
# Devenv
|
||
|
.devenv*
|
||
|
devenv.local.nix
|
||
|
|
||
|
# direnv
|
||
|
.direnv
|
||
|
|
||
|
# pre-commit
|
||
|
.pre-commit-config.yaml
|