| OLD | NEW |
| (Empty) |
| 1 include_HEADERS = libdis.h | |
| 2 lib_LTLIBRARIES = libdisasm.la | |
| 3 libdisasm_la_SOURCES = \ | |
| 4 ia32_implicit.c \ | |
| 5 ia32_implicit.h \ | |
| 6 ia32_insn.c \ | |
| 7 ia32_insn.h \ | |
| 8 ia32_invariant.c \ | |
| 9 ia32_invariant.h \ | |
| 10 ia32_modrm.c \ | |
| 11 ia32_modrm.h \ | |
| 12 ia32_opcode_tables.c \ | |
| 13 ia32_opcode_tables.h \ | |
| 14 ia32_operand.c \ | |
| 15 ia32_operand.h \ | |
| 16 ia32_reg.c \ | |
| 17 ia32_reg.h \ | |
| 18 ia32_settings.c \ | |
| 19 ia32_settings.h \ | |
| 20 libdis.h \ | |
| 21 qword.h \ | |
| 22 x86_disasm.c \ | |
| 23 x86_format.c \ | |
| 24 x86_imm.c \ | |
| 25 x86_imm.h \ | |
| 26 x86_insn.c \ | |
| 27 x86_misc.c \ | |
| 28 x86_operand_list.c \ | |
| 29 x86_operand_list.h | |
| 30 | |
| 31 # Cheat to get non-autoconf swig into tarball, | |
| 32 # even if it doesn't build by default. | |
| 33 EXTRA_DIST = \ | |
| 34 swig/Makefile \ | |
| 35 swig/libdisasm.i \ | |
| 36 swig/libdisasm_oop.i \ | |
| 37 swig/python/Makefile-swig \ | |
| 38 swig/perl/Makefile-swig \ | |
| 39 swig/perl/Makefile.PL \ | |
| 40 swig/ruby/Makefile-swig \ | |
| 41 swig/ruby/extconf.rb \ | |
| 42 swig/tcl/Makefile-swig \ | |
| 43 swig/README | |
| OLD | NEW |