1include_HEADERS = libdis.h 2lib_LTLIBRARIES = libdisasm.la 3libdisasm_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. 33EXTRA_DIST = \ 34swig/Makefile \ 35swig/libdisasm.i \ 36swig/libdisasm_oop.i \ 37swig/python/Makefile-swig \ 38swig/perl/Makefile-swig \ 39swig/perl/Makefile.PL \ 40swig/ruby/Makefile-swig \ 41swig/ruby/extconf.rb \ 42swig/tcl/Makefile-swig \ 43swig/README 44