forked from capstone-engine/capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
56 lines (46 loc) · 784 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Object files
*.o
*.ko
# Libraries
*.lib
*.a
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
# python
bindings/python/build/
*.pyc
bindings/python/pyx/*.c
bindings/python/pyx/arm.pyx
bindings/python/pyx/arm64.pyx
bindings/python/pyx/arm64_const.pyx
bindings/python/pyx/arm_const.pyx
bindings/python/pyx/capstone.pyx
bindings/python/pyx/mips.pyx
bindings/python/pyx/mips_const.pyx
bindings/python/pyx/ppc.pyx
bindings/python/pyx/ppc_const.pyx
bindings/python/pyx/x86.pyx
bindings/python/pyx/x86_const.pyx
# java
bindings/java/capstone.jar
# test binaries
tests/test
tests/test_detail
tests/test_arm
tests/test_arm64
tests/test_mips
tests/test_x86
tests/test_ppc
tests/*.static
# vim tmp file
*.swp
capstone.pc
# local files
_*