Nguyen Anh Quynh | dabc9f2 | 2016-07-15 20:37:19 +0800 | [diff] [blame] | 1 | .DS_Store |
2 | |||||
Nguyen Anh Quynh | 0c91f8f | 2013-11-26 18:32:11 -0800 | [diff] [blame] | 3 | # Object files |
4 | *.o | ||||
5 | *.ko | ||||
6 | |||||
Giovanni Condello | 314893c | 2014-05-10 16:05:49 +0200 | [diff] [blame] | 7 | # Gcc dependency-tracking files |
8 | *.d | ||||
9 | |||||
Nguyen Anh Quynh | 0c91f8f | 2013-11-26 18:32:11 -0800 | [diff] [blame] | 10 | # Libraries |
11 | *.lib | ||||
12 | *.a | ||||
13 | |||||
14 | # Shared objects (inc. Windows DLLs) | ||||
15 | *.dll | ||||
16 | *.so | ||||
17 | *.so.* | ||||
18 | *.dylib | ||||
19 | |||||
20 | # Executables | ||||
21 | *.exe | ||||
22 | *.out | ||||
23 | *.app | ||||
Nguyen Anh Quynh | 5aeeb2c | 2013-11-28 15:45:57 +0800 | [diff] [blame] | 24 | |
25 | # python | ||||
26 | bindings/python/build/ | ||||
Alex Chernetz | e7c653f | 2015-06-19 23:20:27 -0700 | [diff] [blame] | 27 | bindings/python/capstone.egg-info/ |
Nguyen Anh Quynh | 5aeeb2c | 2013-11-28 15:45:57 +0800 | [diff] [blame] | 28 | *.pyc |
29 | |||||
30 | # java | ||||
31 | bindings/java/capstone.jar | ||||
32 | |||||
Nguyen Anh Quynh | a3676e3 | 2014-06-26 22:10:41 +0800 | [diff] [blame] | 33 | # ocaml |
34 | bindings/ocaml/*.cmi | ||||
35 | bindings/ocaml/*.cmx | ||||
36 | bindings/ocaml/*.cmxa | ||||
37 | bindings/ocaml/*.mli | ||||
38 | bindings/ocaml/test | ||||
39 | bindings/ocaml/test_arm | ||||
40 | bindings/ocaml/test_arm64 | ||||
41 | bindings/ocaml/test_mips | ||||
42 | bindings/ocaml/test_x86 | ||||
43 | bindings/ocaml/test_detail | ||||
Nguyen Anh Quynh | f178d69 | 2014-08-19 23:11:04 +0800 | [diff] [blame] | 44 | bindings/ocaml/test_ppc |
45 | bindings/ocaml/test_sparc | ||||
46 | bindings/ocaml/test_systemz | ||||
47 | bindings/ocaml/test_xcore | ||||
48 | |||||
Nguyen Anh Quynh | a3676e3 | 2014-06-26 22:10:41 +0800 | [diff] [blame] | 49 | |
Nguyen Anh Quynh | 5aeeb2c | 2013-11-28 15:45:57 +0800 | [diff] [blame] | 50 | # test binaries |
Nguyen Anh Quynh | 3bdc7f8 | 2015-06-07 15:56:34 +0800 | [diff] [blame] | 51 | tests/test_basic |
Nguyen Anh Quynh | 5aeeb2c | 2013-11-28 15:45:57 +0800 | [diff] [blame] | 52 | tests/test_detail |
Jay Oster | b1119a3 | 2014-10-12 15:47:16 -0700 | [diff] [blame] | 53 | tests/test_iter |
Nguyen Anh Quynh | 5aeeb2c | 2013-11-28 15:45:57 +0800 | [diff] [blame] | 54 | tests/test_arm |
55 | tests/test_arm64 | ||||
56 | tests/test_mips | ||||
57 | tests/test_x86 | ||||
Nguyen Anh Quynh | f1d489b | 2014-01-05 00:00:05 +0800 | [diff] [blame] | 58 | tests/test_ppc |
Giovanni Condello | 314893c | 2014-05-10 16:05:49 +0200 | [diff] [blame] | 59 | tests/test_skipdata |
Nguyen Anh Quynh | d067ebc | 2014-03-10 15:03:16 +0800 | [diff] [blame] | 60 | tests/test_sparc |
Nguyen Anh Quynh | a3cfe4a | 2014-03-26 14:59:53 +0800 | [diff] [blame] | 61 | tests/test_systemz |
Nguyen Anh Quynh | 553bb48 | 2014-05-26 23:47:04 +0800 | [diff] [blame] | 62 | tests/test_xcore |
Nguyen Anh Quynh | e94bf72 | 2014-01-09 14:28:05 +0800 | [diff] [blame] | 63 | tests/*.static |
Nguyen Anh Quynh | 0b96545 | 2015-04-26 22:54:41 +0800 | [diff] [blame] | 64 | tests/test_customized_mnem |
Nguyen Anh Quynh | 841325f | 2015-10-03 11:33:26 +0800 | [diff] [blame] | 65 | tests/test_m68k |
Nguyen Anh Quynh | 5aeeb2c | 2013-11-28 15:45:57 +0800 | [diff] [blame] | 66 | |
67 | # vim tmp file | ||||
68 | *.swp | ||||
Nguyen Anh Quynh | 16d9c6c | 2014-05-14 21:54:09 +0800 | [diff] [blame] | 69 | *~ |
Nguyen Anh Quynh | 7999c1f | 2013-12-03 13:40:11 +0800 | [diff] [blame] | 70 | |
71 | capstone.pc | ||||
Nguyen Anh Quynh | 29d138f | 2013-12-16 10:31:41 +0800 | [diff] [blame] | 72 | |
73 | # local files | ||||
74 | _* | ||||
Oliver Pinter | 0d90b2a | 2014-03-31 02:21:34 +0200 | [diff] [blame] | 75 | |
76 | # freebsd ports: generated file with "make makesum" command | ||||
77 | packages/freebsd/ports/devel/capstone/distinfo | ||||
Nguyen Anh Quynh | 16d9c6c | 2014-05-14 21:54:09 +0800 | [diff] [blame] | 78 | |
79 | # VisualStudio | ||||
Satoshi Tanda | 777f0d3 | 2016-09-27 08:05:06 -0700 | [diff] [blame] | 80 | ProjectUpgradeLog.log |
Mr. eXoDia | 66ca55f | 2014-08-26 12:46:42 +0200 | [diff] [blame] | 81 | Debug/ |
82 | Release/ | ||||
83 | ipch/ | ||||
Nguyen Anh Quynh | 16d9c6c | 2014-05-14 21:54:09 +0800 | [diff] [blame] | 84 | *.sdf |
85 | *.opensdf | ||||
86 | *.suo | ||||
Nguyen Anh Quynh | 015849d | 2014-05-16 15:47:52 +0800 | [diff] [blame] | 87 | *.user |
Satoshi Tanda | 777f0d3 | 2016-09-27 08:05:06 -0700 | [diff] [blame] | 88 | *.backup |
tandasat | 45e5eab | 2016-05-11 21:48:32 -0700 | [diff] [blame] | 89 | *.VC.db |
90 | *.VC.opendb | ||||
Nguyen Anh Quynh | 26dfbc6 | 2014-07-31 18:24:51 +0800 | [diff] [blame] | 91 | |
Félix Cloutier | 89005e0 | 2014-10-02 16:28:09 -0400 | [diff] [blame] | 92 | # Xcode |
Félix Cloutier | e5e8743 | 2015-04-07 14:58:43 -0400 | [diff] [blame] | 93 | xcode/Capstone.xcodeproj/xcuserdata |
94 | xcode/Capstone.xcodeproj/project.xcworkspace/xcuserdata | ||||
Félix Cloutier | 89005e0 | 2014-10-02 16:28:09 -0400 | [diff] [blame] | 95 | |
Nguyen Anh Quynh | 26dfbc6 | 2014-07-31 18:24:51 +0800 | [diff] [blame] | 96 | # suite/ |
97 | test_arm_regression | ||||
98 | test_arm_regression.o | ||||
Nguyen Anh Quynh | 7bb3508 | 2015-06-16 17:32:03 +0800 | [diff] [blame] | 99 | fuzz_harness |
Nguyen Anh Quynh | caf8dda | 2015-09-30 10:51:22 +0800 | [diff] [blame] | 100 | test_iter_benchmark |
Nguyen Anh Quynh | 7bb3508 | 2015-06-16 17:32:03 +0800 | [diff] [blame] | 101 | |
Nguyen Anh Quynh | a91c199 | 2014-10-13 07:27:16 +0800 | [diff] [blame] | 102 | |
Nguyen Anh Quynh | d319c11 | 2014-12-26 16:49:10 +0800 | [diff] [blame] | 103 | *.s |
Nguyen Anh Quynh | 14978f8 | 2016-10-11 00:05:33 +0800 | [diff] [blame] | 104 | |
105 | cstool/cstool |