blob: 3ef747d73af0e2d4831829fd0b1a50bda692c757 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ignore backup files
backup/
#ignore files generated by the compiler
lib/
*.compiled
*.o
*.or
*.ppu
#ignore debug information files
*.dbg
#exclude executable output in windows
*.exe
|