80 lines
1.5 KiB
Plaintext
80 lines
1.5 KiB
Plaintext
# **************************************************************************** #
|
|
# #
|
|
# ::: :::::::: #
|
|
# .gitignore :+: :+: :+: #
|
|
# +:+ +:+ +:+ #
|
|
# By: Maurice809 <maurice809@hotmail.com> +#+ +:+ +#+ #
|
|
# +#+#+#+#+#+ +#+ #
|
|
# Created: 2022/09/22 17:24:37 by Maurice809 #+# #+# #
|
|
# Updated: 2024/08/21 12:12:58 by Maurice809 ### Lausanne.ch #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
# git config --global core.excludesFile ~/.gitignore
|
|
|
|
# macOS Files
|
|
.DS_Store
|
|
|
|
# ingnore directory
|
|
**/util
|
|
**/Doc
|
|
|
|
# ingnore vi temp
|
|
*.swp
|
|
|
|
# ingnore eFat file
|
|
._*
|
|
|
|
# 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
|