]>
Commit | Line | Data |
---|---|---|
b198a81e MR |
1 | |
2 | # Created by https://www.gitignore.io/api/c,linux | |
3 | # Edit at https://www.gitignore.io/?templates=c,linux | |
4 | ||
5 | ### C ### | |
6 | # Prerequisites | |
7 | *.d | |
8 | ||
9 | # Object files | |
10 | *.o | |
11 | *.ko | |
12 | *.obj | |
13 | *.elf | |
14 | ||
15 | # Linker output | |
16 | *.ilk | |
17 | *.map | |
18 | *.exp | |
19 | ||
20 | # Precompiled Headers | |
21 | *.gch | |
22 | *.pch | |
23 | ||
24 | # Libraries | |
25 | *.lib | |
26 | *.a | |
27 | *.la | |
28 | *.lo | |
29 | ||
30 | # Shared objects (inc. Windows DLLs) | |
31 | *.dll | |
32 | *.so | |
33 | *.so.* | |
34 | *.dylib | |
35 | ||
36 | # Executables | |
37 | *.exe | |
38 | *.out | |
39 | *.app | |
40 | *.i*86 | |
41 | *.x86_64 | |
42 | *.hex | |
43 | ||
44 | # Debug files | |
45 | *.dSYM/ | |
46 | *.su | |
47 | *.idb | |
48 | *.pdb | |
49 | ||
50 | # Kernel Module Compile Results | |
51 | *.mod* | |
52 | *.cmd | |
53 | .tmp_versions/ | |
54 | modules.order | |
55 | Module.symvers | |
56 | Mkfile.old | |
57 | dkms.conf | |
58 | ||
59 | ### Linux ### | |
60 | *~ | |
61 | ||
62 | # temporary files which can be created if a process still has a handle open of a deleted file | |
63 | .fuse_hidden* | |
64 | ||
65 | # KDE directory preferences | |
66 | .directory | |
67 | ||
68 | # Linux trash folder which might appear on any partition or disk | |
69 | .Trash-* | |
70 | ||
71 | # .nfs files are created when an open file is removed but is still being accessed | |
72 | .nfs* | |
73 | ||
74 | # End of https://www.gitignore.io/api/c,linux | |
75 |