1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-15 05:45:55 +05:30
gists/c-programming/.gitignore

57 lines
567 B
Plaintext
Raw Normal View History

2024-02-01 00:54:38 +05:30
# Prerequisites
2024-02-20 22:06:12 +05:30
**/*.d
2024-02-01 00:54:38 +05:30
# Object files
2024-02-20 22:06:12 +05:30
**/*.o
**/*.ko
**/*.obj
**/*.elf
2024-02-01 00:54:38 +05:30
# Linker output
2024-02-20 22:06:12 +05:30
**/*.ilk
**/*.map
**/*.exp
2024-02-01 00:54:38 +05:30
# Precompiled Headers
2024-02-20 22:06:12 +05:30
**/*.gch
**/*.pch
2024-02-01 00:54:38 +05:30
# Libraries
2024-02-20 22:06:12 +05:30
**/*.lib
**/*.a
**/*.la
**/*.lo
2024-02-01 00:54:38 +05:30
# Shared objects (inc. Windows DLLs)
2024-02-20 22:06:12 +05:30
**/*.dll
**/*.so
**/*.so.*
**/*.dylib
2024-02-01 00:54:38 +05:30
# Executables
2024-02-20 22:06:12 +05:30
**/*.exe
**/*.out
**/*.app
**/*.i*86
**/*.x86_64
**/*.hex
2024-02-01 00:54:38 +05:30
# Debug files
2024-02-20 22:06:12 +05:30
**/*.dSYM/
**/*.su
**/*.idb
**/*.pdb
2024-02-01 00:54:38 +05:30
# Kernel Module Compile Results
2024-02-20 22:06:12 +05:30
**/*.mod*
**/*.cmd
**/.tmp_versions/
**/modules.order
**/Module.symvers
**/Mkfile.old
**/dkms.conf
2024-02-01 00:54:38 +05:30
# Custom
2024-02-20 22:06:12 +05:30
**/*.tmp
2024-03-09 19:17:42 +05:30
!**/*.mod*.c