diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..08504f2 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,59 @@ | |||
1 | # Object files | ||
2 | *.o | ||
3 | *.ko | ||
4 | *.obj | ||
5 | *.elf | ||
6 | |||
7 | # Precompiled Headers | ||
8 | *.gch | ||
9 | *.pch | ||
10 | |||
11 | # Libraries | ||
12 | *.lib | ||
13 | *.a | ||
14 | *.la | ||
15 | *.lo | ||
16 | |||
17 | # Shared objects (inc. Windows DLLs) | ||
18 | *.dll | ||
19 | *.so | ||
20 | *.so.* | ||
21 | *.dylib | ||
22 | |||
23 | # Executables | ||
24 | *.exe | ||
25 | *.out | ||
26 | *.app | ||
27 | *.i*86 | ||
28 | *.x86_64 | ||
29 | *.hex | ||
30 | |||
31 | # Deps & libs | ||
32 | .deps | ||
33 | .libs | ||
34 | |||
35 | # http://www.gnu.org/software/automake | ||
36 | |||
37 | Makefile.in | ||
38 | |||
39 | # http://www.gnu.org/software/autoconf | ||
40 | |||
41 | /m4 | ||
42 | /autom4te.cache | ||
43 | /aclocal.m4 | ||
44 | /compile | ||
45 | /config.guess | ||
46 | /config.sub | ||
47 | /configure | ||
48 | /depcomp | ||
49 | /install-sh | ||
50 | /missing | ||
51 | /stamp-h1 | ||
52 | |||
53 | # configure-generated | ||
54 | |||
55 | Makefile | ||
56 | /config.log | ||
57 | /config.status | ||
58 | /libtool | ||
59 | /ltmain.sh \ No newline at end of file | ||