Skip to content

Commit 7f40b40

Browse files
committed
chore: add gitignore file
Signed-off-by: Felipe Zipitria <[email protected]>
1 parent 4ee1d9c commit 7f40b40

File tree

1 file changed

+111
-0
lines changed

1 file changed

+111
-0
lines changed

.gitignore

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Libraries
20+
*.lib
21+
*.a
22+
*.la
23+
*.lo
24+
25+
# Shared objects (inc. Windows DLLs)
26+
*.dll
27+
*.so
28+
*.so.*
29+
*.dylib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.i*86
36+
*.x86_64
37+
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# Backup files
46+
*~
47+
48+
# Kernel Module Compile Results
49+
*.mod*
50+
*.cmd
51+
.tmp_versions/
52+
modules.order
53+
Module.symvers
54+
Mkfile.old
55+
dkms.conf
56+
57+
# http://www.gnu.org/software/automake
58+
59+
Makefile.in
60+
/ar-lib
61+
/mdate-sh
62+
/py-compile
63+
/test-driver
64+
/ylwrap
65+
.deps/
66+
.dirstamp
67+
68+
# http://www.gnu.org/software/autoconf
69+
70+
autom4te.cache
71+
/autoscan.log
72+
/autoscan-*.log
73+
/aclocal.m4
74+
/compile
75+
/config.cache
76+
/config.guess
77+
/config.h.in
78+
/config.log
79+
/config.status
80+
/config.sub
81+
/configure
82+
/configure.scan
83+
/depcomp
84+
/install-sh
85+
/missing
86+
/stamp-h1
87+
88+
# https://www.gnu.org/software/libtool/
89+
90+
/ltmain.sh
91+
92+
# http://www.gnu.org/software/texinfo
93+
94+
/texinfo.tex
95+
96+
# http://www.gnu.org/software/m4/
97+
98+
m4/libtool.m4
99+
m4/ltoptions.m4
100+
m4/ltsugar.m4
101+
m4/ltversion.m4
102+
m4/lt~obsolete.m4
103+
104+
# Generated Makefile
105+
# (meta build system like autotools,
106+
# can automatically generate from config.status script
107+
# (which is called by configure script))
108+
Makefile
109+
110+
# IDEs
111+
.idea

0 commit comments

Comments
 (0)