Skip to content

Commit 71e7a10

Browse files
add executable output to gitignore and improve installation script
1 parent 4bee13c commit 71e7a10

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

.gitignore

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# sorting algorithms main
2+
*main.c
3+
4+
# exe files after compilation process
5+
bubble
6+
insertion
7+
select
8+
quick
9+
shell
10+
cocktail
11+
counting
12+
merge
13+
heap
14+
radix
15+
bitonic
16+
quick
17+
deck
18+
19+
# Prerequisites
20+
*.d
21+
22+
# Object files
23+
*.o
24+
*.ko
25+
*.obj
26+
*.elf
27+
28+
# Linker output
29+
*.ilk
30+
*.map
31+
*.exp
32+
33+
# Precompiled Headers
34+
*.gch
35+
*.pch
36+
37+
# Libraries
38+
*.lib
39+
*.a
40+
*.la
41+
*.lo
42+
43+
# Shared objects (inc. Windows DLLs)
44+
*.dll
45+
*.so
46+
*.so.*
47+
*.dylib
48+
49+
# Executables
50+
*.exe
51+
*.out
52+
*.app
53+
*.i*86
54+
*.x86_64
55+
*.hex
56+
57+
# Debug files
58+
*.dSYM/
59+
*.su
60+
*.idb
61+
*.pdb
62+
63+
# Kernel Module Compile Results
64+
*.mod*
65+
*.cmd
66+
.tmp_versions/
67+
modules.order
68+
Module.symvers
69+
Mkfile.old
70+
dkms.conf

0 commit comments

Comments
 (0)