Skip to content

Commit d4189b5

Browse files
authored
Merge pull request #4517 from sctech-tr/wii
add libogc.gitignore (wii homebrew development)
2 parents 527b04e + 136e88c commit d4189b5

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed

community/libogc.gitignore

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Ignore build directories
2+
build/
3+
4+
# Ignore Wii-specific metadata files
5+
meta.xml
6+
icon.png
7+
8+
9+
# Ignore editor or IDE-specific files
10+
.vscode/
11+
.idea/
12+
*.sublime-project
13+
*.sublime-workspace
14+
15+
# Ignore backup or temporary files
16+
*~
17+
*.bak
18+
*.swp
19+
*.tmp
20+
21+
# Ignore log files
22+
*.log
23+
24+
# Ignore libraries and dependencies
25+
lib/
26+
deps/
27+
obj/
28+
29+
# Ignore operating system-specific files
30+
$RECYCLE.BIN/
31+
.Trash-1000/
32+
.Spotlight-V100/
33+
.fseventsd/
34+
.DS_Store
35+
36+
# Prerequisites
37+
*.d
38+
39+
# Object files
40+
*.o
41+
*.ko
42+
*.obj
43+
*.elf
44+
*.o
45+
*.bin
46+
47+
# Linker output
48+
*.ilk
49+
*.map
50+
*.exp
51+
52+
# Precompiled Headers
53+
*.gch
54+
*.pch
55+
56+
# Libraries
57+
*.lib
58+
*.a
59+
*.la
60+
*.lo
61+
62+
# Shared objects (inc. Windows DLLs)
63+
*.dll
64+
*.so
65+
*.so.*
66+
*.dylib
67+
68+
# Executables
69+
*.exe
70+
*.out
71+
*.app
72+
*.i*86
73+
*.x86_64
74+
*.hex
75+
*.dol
76+
*.elf
77+
78+
# Debug files
79+
*.dSYM/
80+
*.su
81+
*.idb
82+
*.pdb
83+
84+
# Kernel Module Compile Results
85+
*.mod*
86+
*.cmd
87+
.tmp_versions/
88+
modules.order
89+
Module.symvers
90+
Mkfile.old
91+
dkms.conf

0 commit comments

Comments
 (0)