2014-03-05 23:50:41 +08:00
|
|
|
# Capstone Disassembly Engine
|
2014-03-10 23:14:30 -07:00
|
|
|
# By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014
|
2013-12-31 23:38:28 +08:00
|
|
|
|
2013-12-19 22:43:01 -06:00
|
|
|
include config.mk
|
2014-03-07 17:11:18 +08:00
|
|
|
include pkgconfig.mk # package version
|
2014-05-01 22:53:52 +08:00
|
|
|
include functions.mk
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-05-01 15:22:25 +02:00
|
|
|
# Verbose output?
|
|
|
|
V ?= 0
|
|
|
|
|
2018-05-16 16:55:44 -07:00
|
|
|
OS := $(shell uname)
|
|
|
|
ifeq ($(OS),Darwin)
|
2019-01-25 12:36:37 +08:00
|
|
|
LIBARCHS ?= x86_64
|
2018-05-16 16:55:44 -07:00
|
|
|
PREFIX ?= /usr/local
|
|
|
|
endif
|
|
|
|
|
2014-05-01 15:22:25 +02:00
|
|
|
ifeq ($(PKG_EXTRA),)
|
|
|
|
PKG_VERSION = $(PKG_MAJOR).$(PKG_MINOR)
|
|
|
|
else
|
|
|
|
PKG_VERSION = $(PKG_MAJOR).$(PKG_MINOR).$(PKG_EXTRA)
|
|
|
|
endif
|
|
|
|
|
2014-01-16 21:07:59 +08:00
|
|
|
ifeq ($(CROSS),)
|
|
|
|
RANLIB ?= ranlib
|
|
|
|
else
|
|
|
|
CC = $(CROSS)gcc
|
|
|
|
AR = $(CROSS)ar
|
|
|
|
RANLIB = $(CROSS)ranlib
|
|
|
|
STRIP = $(CROSS)strip
|
|
|
|
endif
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-04-29 07:11:55 +08:00
|
|
|
ifneq (,$(findstring yes,$(CAPSTONE_DIET)))
|
|
|
|
CFLAGS ?= -Os
|
|
|
|
CFLAGS += -DCAPSTONE_DIET
|
|
|
|
else
|
|
|
|
CFLAGS ?= -O3
|
|
|
|
endif
|
|
|
|
|
2014-08-17 20:59:05 +02:00
|
|
|
ifneq (,$(findstring yes,$(CAPSTONE_X86_ATT_DISABLE)))
|
|
|
|
CFLAGS += -DCAPSTONE_X86_ATT_DISABLE
|
|
|
|
endif
|
|
|
|
|
2019-01-21 14:23:30 +01:00
|
|
|
CFLAGS += -fPIC -Wall -Wwrite-strings -Wmissing-prototypes -Iinclude
|
2014-01-05 23:41:31 +08:00
|
|
|
|
2014-04-29 14:25:15 +08:00
|
|
|
ifeq ($(CAPSTONE_USE_SYS_DYN_MEM),yes)
|
2014-05-10 19:26:32 +08:00
|
|
|
CFLAGS += -DCAPSTONE_USE_SYS_DYN_MEM
|
2014-01-05 23:41:31 +08:00
|
|
|
endif
|
|
|
|
|
2015-04-09 18:28:19 +01:00
|
|
|
ifeq ($(CAPSTONE_HAS_OSXKERNEL), yes)
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_OSXKERNEL
|
2015-11-10 23:02:26 +01:00
|
|
|
SDKROOT ?= $(shell xcodebuild -version -sdk macosx Path)
|
|
|
|
CFLAGS += -mmacosx-version-min=10.5 \
|
|
|
|
-isysroot$(SDKROOT) \
|
|
|
|
-I$(SDKROOT)/System/Library/Frameworks/Kernel.framework/Headers \
|
|
|
|
-mkernel \
|
|
|
|
-fno-builtin
|
2015-04-09 18:28:19 +01:00
|
|
|
endif
|
|
|
|
|
2013-11-27 15:38:44 +01:00
|
|
|
PREFIX ?= /usr
|
|
|
|
DESTDIR ?=
|
2014-04-29 09:00:34 +02:00
|
|
|
ifndef BUILDDIR
|
2014-04-29 16:29:55 +08:00
|
|
|
BLDIR = .
|
2014-04-29 09:00:34 +02:00
|
|
|
OBJDIR = .
|
|
|
|
else
|
2014-04-30 00:06:41 +02:00
|
|
|
BLDIR = $(abspath $(BUILDDIR))
|
2014-04-29 16:29:55 +08:00
|
|
|
OBJDIR = $(BLDIR)/obj
|
2014-04-29 09:00:34 +02:00
|
|
|
endif
|
2015-11-08 12:05:41 +01:00
|
|
|
INCDIR ?= $(PREFIX)/include
|
2013-12-25 22:47:28 +08:00
|
|
|
|
2014-03-29 21:09:35 +08:00
|
|
|
UNAME_S := $(shell uname -s)
|
2014-04-08 23:34:44 +08:00
|
|
|
|
2014-04-14 13:36:46 +08:00
|
|
|
LIBDIRARCH ?= lib
|
|
|
|
# Uncomment the below line to installs x86_64 libs to lib64/ directory.
|
|
|
|
# Or better, pass 'LIBDIRARCH=lib64' to 'make install/uninstall' via 'make.sh'.
|
|
|
|
#LIBDIRARCH ?= lib64
|
|
|
|
LIBDIR = $(DESTDIR)$(PREFIX)/$(LIBDIRARCH)
|
2016-10-10 22:54:16 +08:00
|
|
|
BINDIR = $(DESTDIR)$(PREFIX)/bin
|
2013-11-27 15:38:44 +01:00
|
|
|
|
2014-03-23 02:19:59 +01:00
|
|
|
LIBDATADIR = $(LIBDIR)
|
2015-07-27 04:03:48 +02:00
|
|
|
|
|
|
|
# Don't redefine $LIBDATADIR when global environment variable
|
|
|
|
# USE_GENERIC_LIBDATADIR is set. This is used by the pkgsrc framework.
|
|
|
|
|
|
|
|
ifndef USE_GENERIC_LIBDATADIR
|
2014-03-23 02:19:59 +01:00
|
|
|
ifeq ($(UNAME_S), FreeBSD)
|
2015-11-08 12:05:41 +01:00
|
|
|
LIBDATADIR = $(PREFIX)/libdata
|
2014-03-23 02:19:59 +01:00
|
|
|
endif
|
2014-03-23 19:10:13 +01:00
|
|
|
ifeq ($(UNAME_S), DragonFly)
|
2015-11-08 12:05:41 +01:00
|
|
|
LIBDATADIR = $(PREFIX)/libdata
|
2014-03-23 19:10:13 +01:00
|
|
|
endif
|
2015-07-27 04:03:48 +02:00
|
|
|
endif
|
2014-03-23 02:19:59 +01:00
|
|
|
|
2014-01-17 20:55:21 +08:00
|
|
|
INSTALL_BIN ?= install
|
|
|
|
INSTALL_DATA ?= $(INSTALL_BIN) -m0644
|
2014-03-23 02:19:59 +01:00
|
|
|
INSTALL_LIB ?= $(INSTALL_BIN) -m0755
|
2013-11-27 15:38:44 +01:00
|
|
|
|
2013-11-27 12:11:31 +08:00
|
|
|
LIBNAME = capstone
|
2013-12-06 17:03:41 +01:00
|
|
|
|
2013-12-30 00:15:25 +08:00
|
|
|
|
2014-02-28 23:09:04 +08:00
|
|
|
DEP_ARM =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_ARM += $(wildcard arch/ARM/ARM*.inc)
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
LIBOBJ_ARM =
|
2014-01-15 16:01:55 +08:00
|
|
|
ifneq (,$(findstring arm,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_ARM
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_ARM += $(wildcard arch/ARM/ARM*.c)
|
|
|
|
LIBOBJ_ARM += $(LIBSRC_ARM:%.c=$(OBJDIR)/%.o)
|
2014-02-28 23:09:04 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
DEP_ARM64 =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_ARM64 += $(wildcard arch/AArch64/AArch64*.inc)
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
LIBOBJ_ARM64 =
|
|
|
|
ifneq (,$(findstring aarch64,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_ARM64
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_ARM64 += $(wildcard arch/AArch64/AArch64*.c)
|
|
|
|
LIBOBJ_ARM64 += $(LIBSRC_ARM64:%.c=$(OBJDIR)/%.o)
|
2014-01-15 16:01:55 +08:00
|
|
|
endif
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
|
2015-08-03 18:45:08 +02:00
|
|
|
DEP_M68K =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_M68K += $(wildcard arch/M68K/M68K*.h)
|
2015-08-03 18:45:08 +02:00
|
|
|
|
|
|
|
LIBOBJ_M68K =
|
|
|
|
ifneq (,$(findstring m68k,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_M68K
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_M68K += $(wildcard arch/M68K/M68K*.c)
|
|
|
|
LIBOBJ_M68K += $(LIBSRC_M68K:%.c=$(OBJDIR)/%.o)
|
2015-08-03 18:45:08 +02:00
|
|
|
endif
|
|
|
|
|
2014-02-28 23:09:04 +08:00
|
|
|
DEP_MIPS =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_MIPS += $(wildcard arch/Mips/Mips*.inc)
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
LIBOBJ_MIPS =
|
2014-01-14 23:08:20 +08:00
|
|
|
ifneq (,$(findstring mips,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_MIPS
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_MIPS += $(wildcard arch/Mips/Mips*.c)
|
|
|
|
LIBOBJ_MIPS += $(LIBSRC_MIPS:%.c=$(OBJDIR)/%.o)
|
2014-01-14 23:08:20 +08:00
|
|
|
endif
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
DEP_PPC =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_PPC += $(wildcard arch/PowerPC/PPC*.inc)
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
LIBOBJ_PPC =
|
2013-12-30 00:15:25 +08:00
|
|
|
ifneq (,$(findstring powerpc,$(CAPSTONE_ARCHS)))
|
2014-01-09 11:06:44 +07:00
|
|
|
CFLAGS += -DCAPSTONE_HAS_POWERPC
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_PPC += $(wildcard arch/PowerPC/PPC*.c)
|
|
|
|
LIBOBJ_PPC += $(LIBSRC_PPC:%.c=$(OBJDIR)/%.o)
|
2013-12-30 00:15:25 +08:00
|
|
|
endif
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
|
2014-03-10 11:58:57 +08:00
|
|
|
DEP_SPARC =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_SPARC += $(wildcard arch/Sparc/Sparc*.inc)
|
2014-03-10 11:58:57 +08:00
|
|
|
|
|
|
|
LIBOBJ_SPARC =
|
|
|
|
ifneq (,$(findstring sparc,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_SPARC
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_SPARC += $(wildcard arch/Sparc/Sparc*.c)
|
|
|
|
LIBOBJ_SPARC += $(LIBSRC_SPARC:%.c=$(OBJDIR)/%.o)
|
2014-03-10 11:58:57 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2014-03-23 08:35:45 +08:00
|
|
|
DEP_SYSZ =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_SYSZ += $(wildcard arch/SystemZ/SystemZ*.inc)
|
2014-03-23 08:35:45 +08:00
|
|
|
|
|
|
|
LIBOBJ_SYSZ =
|
|
|
|
ifneq (,$(findstring systemz,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_SYSZ
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_SYSZ += $(wildcard arch/SystemZ/SystemZ*.c)
|
|
|
|
LIBOBJ_SYSZ += $(LIBSRC_SYSZ:%.c=$(OBJDIR)/%.o)
|
2014-03-23 08:35:45 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2014-03-25 23:20:41 +08:00
|
|
|
# by default, we compile full X86 instruction sets
|
2014-03-27 10:54:44 +08:00
|
|
|
X86_REDUCE =
|
|
|
|
ifneq (,$(findstring yes,$(CAPSTONE_X86_REDUCE)))
|
|
|
|
X86_REDUCE = _reduce
|
2014-03-28 10:28:57 +08:00
|
|
|
CFLAGS += -DCAPSTONE_X86_REDUCE -Os
|
2014-03-25 23:20:41 +08:00
|
|
|
endif
|
|
|
|
|
2014-02-28 23:09:04 +08:00
|
|
|
DEP_X86 =
|
2014-03-27 10:54:44 +08:00
|
|
|
DEP_X86 += arch/X86/X86GenAsmWriter$(X86_REDUCE).inc
|
|
|
|
DEP_X86 += arch/X86/X86GenAsmWriter1$(X86_REDUCE).inc
|
|
|
|
DEP_X86 += arch/X86/X86GenDisassemblerTables$(X86_REDUCE).inc
|
|
|
|
DEP_X86 += arch/X86/X86GenInstrInfo$(X86_REDUCE).inc
|
2014-02-28 23:09:04 +08:00
|
|
|
DEP_X86 += arch/X86/X86GenRegisterInfo.inc
|
2015-11-06 10:34:27 +08:00
|
|
|
DEP_X86 += arch/X86/X86MappingInsn$(X86_REDUCE).inc
|
|
|
|
DEP_X86 += arch/X86/X86MappingInsnOp$(X86_REDUCE).inc
|
|
|
|
DEP_X86 += arch/X86/X86ImmSize.inc
|
2014-02-28 23:09:04 +08:00
|
|
|
|
|
|
|
LIBOBJ_X86 =
|
|
|
|
ifneq (,$(findstring x86,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_X86
|
2014-04-29 09:00:34 +02:00
|
|
|
LIBOBJ_X86 += $(OBJDIR)/arch/X86/X86DisassemblerDecoder.o
|
|
|
|
LIBOBJ_X86 += $(OBJDIR)/arch/X86/X86Disassembler.o
|
|
|
|
LIBOBJ_X86 += $(OBJDIR)/arch/X86/X86IntelInstPrinter.o
|
2014-05-14 12:26:53 +08:00
|
|
|
# assembly syntax is irrelevant in Diet mode, when this info is suppressed
|
|
|
|
ifeq (,$(findstring yes,$(CAPSTONE_DIET)))
|
2014-08-17 20:59:05 +02:00
|
|
|
ifeq (,$(findstring yes,$(CAPSTONE_X86_ATT_DISABLE)))
|
2014-04-29 09:00:34 +02:00
|
|
|
LIBOBJ_X86 += $(OBJDIR)/arch/X86/X86ATTInstPrinter.o
|
2014-08-17 20:59:05 +02:00
|
|
|
endif
|
2014-05-14 12:26:53 +08:00
|
|
|
endif
|
2014-04-29 09:00:34 +02:00
|
|
|
LIBOBJ_X86 += $(OBJDIR)/arch/X86/X86Mapping.o
|
|
|
|
LIBOBJ_X86 += $(OBJDIR)/arch/X86/X86Module.o
|
2013-12-20 00:57:12 -06:00
|
|
|
endif
|
2013-12-30 00:15:25 +08:00
|
|
|
|
2014-05-26 23:02:48 +08:00
|
|
|
|
|
|
|
DEP_XCORE =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_XCORE += $(wildcard arch/XCore/XCore*.inc)
|
2014-05-26 23:02:48 +08:00
|
|
|
|
|
|
|
LIBOBJ_XCORE =
|
|
|
|
ifneq (,$(findstring xcore,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_XCORE
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_XCORE += $(wildcard arch/XCore/XCore*.c)
|
|
|
|
LIBOBJ_XCORE += $(LIBSRC_XCORE:%.c=$(OBJDIR)/%.o)
|
2014-05-26 23:02:48 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2016-05-03 15:52:11 +03:00
|
|
|
DEP_TMS320C64X =
|
2017-10-20 16:17:30 +01:00
|
|
|
DEP_TMS320C64X += $(wildcard arch/TMS320C64x/TMS320C64x*.inc)
|
2016-05-03 15:52:11 +03:00
|
|
|
|
|
|
|
LIBOBJ_TMS320C64X =
|
|
|
|
ifneq (,$(findstring tms320c64x,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_TMS320C64X
|
2017-10-21 14:47:38 +01:00
|
|
|
LIBSRC_TMS320C64X += $(wildcard arch/TMS320C64x/TMS320C64x*.c)
|
|
|
|
LIBOBJ_TMS320C64X += $(LIBSRC_TMS320C64X:%.c=$(OBJDIR)/%.o)
|
2016-05-03 15:52:11 +03:00
|
|
|
endif
|
|
|
|
|
M680X: Target ready for pull request (#1034)
* Added new M680X target. Supports M6800/1/2/3/9, HD6301
* M680X: Reformat for coding guide lines. Set alphabetical order in HACK.TXT
* M680X: Prepare for python binding. Move cs_m680x, m680x_insn to m680x_info. Chec
> k cpu type, no default.
* M680X: Add python bindings. Added python tests.
* M680X: Added cpu types to usage message.
* cstool: Avoid segfault for invalid <arch+mode>.
* Make test_m680x.c/test_m680x.py output comparable (diff params: -bu). Keep xprint.py untouched.
* M680X: Update CMake/make for m680x support. Update .gitignore.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Make test_m680x.c/test_m680x.py output comparable (diff params: -bu).
* M680X: Add ocaml bindings and tests.
* M680X: Add java bindings and tests.
* M680X: Added tests for all indexed addressing modes. C/Python/Ocaml
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Used M680X_FIRST_OP_IN_MNEM in tests C/python/java/ocaml.
* M680X: Added access property to cs_m680x_op.
* M680X: Added operand size.
* M680X: Remove compiler warnings.
* M680X: Added READ/WRITE access property per operator.
* M680X: Make reg_inherent_hdlr independent of CPU type.
* M680X: Add HD6309 support + bug fixes
* M680X: Remove errors and warning.
* M680X: Add Bcc/LBcc to group BRAREL (relative branch).
* M680X: Add group JUMP to BVS/BVC/LBVS/LBVC. Remove BRAREL from BRN/LBRN.
* M680X: Remove LBRN from group BRAREL.
* M680X: Refactored cpu_type initialization for better readability.
* M680X: Add two operands for insn having two reg. in mnemonic. e.g. ABX.
* M680X: Remove typo in cstool.c
* M680X: Some format improvements in changed_regs.
* M680X: Remove insn id string list from tests (C/python/java/ocaml).
* M680X: SEXW, set access of reg. D to WRITE.
* M680X: Sort changed_regs in increasing m680x_insn order.
* M680X: Add M68HC11 support + Reduced from two to one INDEXED operand.
* M680X: cstool, also write '(in mnemonic)' for second reg. operand.
* M680X: Add BRN/LBRN to group JUMP and BRAREL.
* M680X: For Bcc/LBcc/BRSET/BRCLR set reg. CC to read access.
* M680X: Correctly print negative immediate values with option CS_OPT_UNSIGNED.
* M680X: Rename some instruction handlers.
* M680X: Add M68HC05 support.
* M680X: Dont print prefix '<' for direct addr. mode.
* M680X: Add M68HC08 support + resorted tables + bug fixes.
* M680X: Add Freescale HCS08 support.
* M680X: Changed group names, avoid spaces.
* M680X: Refactoring, rename addessing mode handlers.
* M680X: indexed addr. mode, changed pre/post inc-/decrement representation.
* M680X: Rename some M6809/HD6309 specific functions.
* M680X: Add CPU12 (68HC12/HCS12) support.
* M680X: Correctly display illegal instruction as FCB .
* M680X: bugfix: BRA/BRN/BSR/LBRA/LBRN/LBSR does not read CC reg.
* M680X: bugfix: Correctly check for sufficient code size for M6809 indexed addressing.
* M680X: Better support for changing insn id within handler for addessing mode.
* M680X: Remove warnings.
* M680X: In set_changed_regs_read_write_counts use own access_mode.
* M680X: Split cpu specific tables into separate *.inc files.
* M680X: Remove warnings.
* M680X: Removed address_mode. Addressing mode is available in operand.type
* M680X: Bugfix: BSET/BCLR/BRSET/BRCLR correct read/modify CC reg.
* M680X: Remove register TMP1. It is first visible in CPU12X.
* M680X: Performance improvement + bug fixes.
* M680X: Performance improvement, make cpu_tables const static.
* M680X: Simplify operand decoding by using two handlers.
* M680X: Replace M680X_OP_INDEX by M680X_OP_CONSTANT + bugfix in java/python/ocaml bindings.
* M680X: Format with astyle.
* M680X: Update documentation.
* M680X: Corrected author for m680x specific files.
* M680X: Make max. number of architectures single source.
2017-10-21 15:44:36 +02:00
|
|
|
DEP_M680X =
|
2017-10-21 14:05:02 +07:00
|
|
|
DEP_M680X += $(wildcard arch/M680X/*.inc)
|
|
|
|
DEP_M680X += $(wildcard arch/M680X/M680X*.h)
|
M680X: Target ready for pull request (#1034)
* Added new M680X target. Supports M6800/1/2/3/9, HD6301
* M680X: Reformat for coding guide lines. Set alphabetical order in HACK.TXT
* M680X: Prepare for python binding. Move cs_m680x, m680x_insn to m680x_info. Chec
> k cpu type, no default.
* M680X: Add python bindings. Added python tests.
* M680X: Added cpu types to usage message.
* cstool: Avoid segfault for invalid <arch+mode>.
* Make test_m680x.c/test_m680x.py output comparable (diff params: -bu). Keep xprint.py untouched.
* M680X: Update CMake/make for m680x support. Update .gitignore.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Make test_m680x.c/test_m680x.py output comparable (diff params: -bu).
* M680X: Add ocaml bindings and tests.
* M680X: Add java bindings and tests.
* M680X: Added tests for all indexed addressing modes. C/Python/Ocaml
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Used M680X_FIRST_OP_IN_MNEM in tests C/python/java/ocaml.
* M680X: Added access property to cs_m680x_op.
* M680X: Added operand size.
* M680X: Remove compiler warnings.
* M680X: Added READ/WRITE access property per operator.
* M680X: Make reg_inherent_hdlr independent of CPU type.
* M680X: Add HD6309 support + bug fixes
* M680X: Remove errors and warning.
* M680X: Add Bcc/LBcc to group BRAREL (relative branch).
* M680X: Add group JUMP to BVS/BVC/LBVS/LBVC. Remove BRAREL from BRN/LBRN.
* M680X: Remove LBRN from group BRAREL.
* M680X: Refactored cpu_type initialization for better readability.
* M680X: Add two operands for insn having two reg. in mnemonic. e.g. ABX.
* M680X: Remove typo in cstool.c
* M680X: Some format improvements in changed_regs.
* M680X: Remove insn id string list from tests (C/python/java/ocaml).
* M680X: SEXW, set access of reg. D to WRITE.
* M680X: Sort changed_regs in increasing m680x_insn order.
* M680X: Add M68HC11 support + Reduced from two to one INDEXED operand.
* M680X: cstool, also write '(in mnemonic)' for second reg. operand.
* M680X: Add BRN/LBRN to group JUMP and BRAREL.
* M680X: For Bcc/LBcc/BRSET/BRCLR set reg. CC to read access.
* M680X: Correctly print negative immediate values with option CS_OPT_UNSIGNED.
* M680X: Rename some instruction handlers.
* M680X: Add M68HC05 support.
* M680X: Dont print prefix '<' for direct addr. mode.
* M680X: Add M68HC08 support + resorted tables + bug fixes.
* M680X: Add Freescale HCS08 support.
* M680X: Changed group names, avoid spaces.
* M680X: Refactoring, rename addessing mode handlers.
* M680X: indexed addr. mode, changed pre/post inc-/decrement representation.
* M680X: Rename some M6809/HD6309 specific functions.
* M680X: Add CPU12 (68HC12/HCS12) support.
* M680X: Correctly display illegal instruction as FCB .
* M680X: bugfix: BRA/BRN/BSR/LBRA/LBRN/LBSR does not read CC reg.
* M680X: bugfix: Correctly check for sufficient code size for M6809 indexed addressing.
* M680X: Better support for changing insn id within handler for addessing mode.
* M680X: Remove warnings.
* M680X: In set_changed_regs_read_write_counts use own access_mode.
* M680X: Split cpu specific tables into separate *.inc files.
* M680X: Remove warnings.
* M680X: Removed address_mode. Addressing mode is available in operand.type
* M680X: Bugfix: BSET/BCLR/BRSET/BRCLR correct read/modify CC reg.
* M680X: Remove register TMP1. It is first visible in CPU12X.
* M680X: Performance improvement + bug fixes.
* M680X: Performance improvement, make cpu_tables const static.
* M680X: Simplify operand decoding by using two handlers.
* M680X: Replace M680X_OP_INDEX by M680X_OP_CONSTANT + bugfix in java/python/ocaml bindings.
* M680X: Format with astyle.
* M680X: Update documentation.
* M680X: Corrected author for m680x specific files.
* M680X: Make max. number of architectures single source.
2017-10-21 15:44:36 +02:00
|
|
|
|
|
|
|
LIBOBJ_M680X =
|
|
|
|
ifneq (,$(findstring m680x,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_M680X
|
2017-10-21 14:05:02 +07:00
|
|
|
LIBSRC_M680X += $(wildcard arch/M680X/*.c)
|
|
|
|
LIBOBJ_M680X += $(LIBSRC_M680X:%.c=$(OBJDIR)/%.o)
|
M680X: Target ready for pull request (#1034)
* Added new M680X target. Supports M6800/1/2/3/9, HD6301
* M680X: Reformat for coding guide lines. Set alphabetical order in HACK.TXT
* M680X: Prepare for python binding. Move cs_m680x, m680x_insn to m680x_info. Chec
> k cpu type, no default.
* M680X: Add python bindings. Added python tests.
* M680X: Added cpu types to usage message.
* cstool: Avoid segfault for invalid <arch+mode>.
* Make test_m680x.c/test_m680x.py output comparable (diff params: -bu). Keep xprint.py untouched.
* M680X: Update CMake/make for m680x support. Update .gitignore.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Make test_m680x.c/test_m680x.py output comparable (diff params: -bu).
* M680X: Add ocaml bindings and tests.
* M680X: Add java bindings and tests.
* M680X: Added tests for all indexed addressing modes. C/Python/Ocaml
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Used M680X_FIRST_OP_IN_MNEM in tests C/python/java/ocaml.
* M680X: Added access property to cs_m680x_op.
* M680X: Added operand size.
* M680X: Remove compiler warnings.
* M680X: Added READ/WRITE access property per operator.
* M680X: Make reg_inherent_hdlr independent of CPU type.
* M680X: Add HD6309 support + bug fixes
* M680X: Remove errors and warning.
* M680X: Add Bcc/LBcc to group BRAREL (relative branch).
* M680X: Add group JUMP to BVS/BVC/LBVS/LBVC. Remove BRAREL from BRN/LBRN.
* M680X: Remove LBRN from group BRAREL.
* M680X: Refactored cpu_type initialization for better readability.
* M680X: Add two operands for insn having two reg. in mnemonic. e.g. ABX.
* M680X: Remove typo in cstool.c
* M680X: Some format improvements in changed_regs.
* M680X: Remove insn id string list from tests (C/python/java/ocaml).
* M680X: SEXW, set access of reg. D to WRITE.
* M680X: Sort changed_regs in increasing m680x_insn order.
* M680X: Add M68HC11 support + Reduced from two to one INDEXED operand.
* M680X: cstool, also write '(in mnemonic)' for second reg. operand.
* M680X: Add BRN/LBRN to group JUMP and BRAREL.
* M680X: For Bcc/LBcc/BRSET/BRCLR set reg. CC to read access.
* M680X: Correctly print negative immediate values with option CS_OPT_UNSIGNED.
* M680X: Rename some instruction handlers.
* M680X: Add M68HC05 support.
* M680X: Dont print prefix '<' for direct addr. mode.
* M680X: Add M68HC08 support + resorted tables + bug fixes.
* M680X: Add Freescale HCS08 support.
* M680X: Changed group names, avoid spaces.
* M680X: Refactoring, rename addessing mode handlers.
* M680X: indexed addr. mode, changed pre/post inc-/decrement representation.
* M680X: Rename some M6809/HD6309 specific functions.
* M680X: Add CPU12 (68HC12/HCS12) support.
* M680X: Correctly display illegal instruction as FCB .
* M680X: bugfix: BRA/BRN/BSR/LBRA/LBRN/LBSR does not read CC reg.
* M680X: bugfix: Correctly check for sufficient code size for M6809 indexed addressing.
* M680X: Better support for changing insn id within handler for addessing mode.
* M680X: Remove warnings.
* M680X: In set_changed_regs_read_write_counts use own access_mode.
* M680X: Split cpu specific tables into separate *.inc files.
* M680X: Remove warnings.
* M680X: Removed address_mode. Addressing mode is available in operand.type
* M680X: Bugfix: BSET/BCLR/BRSET/BRCLR correct read/modify CC reg.
* M680X: Remove register TMP1. It is first visible in CPU12X.
* M680X: Performance improvement + bug fixes.
* M680X: Performance improvement, make cpu_tables const static.
* M680X: Simplify operand decoding by using two handlers.
* M680X: Replace M680X_OP_INDEX by M680X_OP_CONSTANT + bugfix in java/python/ocaml bindings.
* M680X: Format with astyle.
* M680X: Update documentation.
* M680X: Corrected author for m680x specific files.
* M680X: Make max. number of architectures single source.
2017-10-21 15:44:36 +02:00
|
|
|
endif
|
2016-05-03 15:52:11 +03:00
|
|
|
|
2018-03-31 17:29:22 +08:00
|
|
|
|
|
|
|
DEP_EVM =
|
|
|
|
DEP_EVM += $(wildcard arch/EVM/EVM*.inc)
|
|
|
|
|
|
|
|
LIBOBJ_EVM =
|
|
|
|
ifneq (,$(findstring evm,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_EVM
|
|
|
|
LIBSRC_EVM += $(wildcard arch/EVM/EVM*.c)
|
|
|
|
LIBOBJ_EVM += $(LIBSRC_EVM:%.c=$(OBJDIR)/%.o)
|
2014-05-26 23:02:48 +08:00
|
|
|
endif
|
|
|
|
|
2019-02-01 23:03:47 +08:00
|
|
|
DEP_WASM =
|
|
|
|
DEP_WASM += $(wildcard arch/WASM/WASM*.inc)
|
|
|
|
|
|
|
|
LIBOBJ_WASM =
|
|
|
|
ifneq (,$(findstring wasm,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_WASM
|
|
|
|
LIBSRC_WASM += $(wildcard arch/WASM/WASM*.c)
|
|
|
|
LIBOBJ_WASM += $(LIBSRC_WASM:%.c=$(OBJDIR)/%.o)
|
|
|
|
endif
|
|
|
|
|
2014-05-26 23:02:48 +08:00
|
|
|
|
2018-12-02 21:39:41 +01:00
|
|
|
DEP_MOS65XX =
|
|
|
|
DEP_MOS65XX += $(wildcard arch/MOS65XX/MOS65XX*.inc)
|
|
|
|
|
|
|
|
LIBOBJ_MOS65XX =
|
|
|
|
ifneq (,$(findstring mos65xx,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_MOS65XX
|
|
|
|
LIBSRC_MOS65XX += $(wildcard arch/MOS65XX/MOS65XX*.c)
|
|
|
|
LIBOBJ_MOS65XX += $(LIBSRC_MOS65XX:%.c=$(OBJDIR)/%.o)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2019-02-18 17:39:51 +08:00
|
|
|
DEP_BPF =
|
|
|
|
DEP_BPF += $(wildcard arch/BPF/BPF*.inc)
|
|
|
|
|
|
|
|
LIBOBJ_BPF =
|
|
|
|
ifneq (,$(findstring bpf,$(CAPSTONE_ARCHS)))
|
|
|
|
CFLAGS += -DCAPSTONE_HAS_BPF
|
|
|
|
LIBSRC_BPF += $(wildcard arch/BPF/BPF*.c)
|
|
|
|
LIBOBJ_BPF += $(LIBSRC_BPF:%.c=$(OBJDIR)/%.o)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2014-02-28 23:09:04 +08:00
|
|
|
LIBOBJ =
|
2014-04-29 09:00:34 +02:00
|
|
|
LIBOBJ += $(OBJDIR)/cs.o $(OBJDIR)/utils.o $(OBJDIR)/SStream.o $(OBJDIR)/MCInstrDesc.o $(OBJDIR)/MCRegisterInfo.o
|
2018-12-02 21:39:41 +01:00
|
|
|
LIBOBJ += $(LIBOBJ_ARM) $(LIBOBJ_ARM64) $(LIBOBJ_M68K) $(LIBOBJ_MIPS) $(LIBOBJ_PPC) $(LIBOBJ_SPARC) $(LIBOBJ_SYSZ)
|
2019-02-18 17:39:51 +08:00
|
|
|
LIBOBJ += $(LIBOBJ_X86) $(LIBOBJ_XCORE) $(LIBOBJ_TMS320C64X) $(LIBOBJ_M680X) $(LIBOBJ_EVM) $(LIBOBJ_MOS65XX) $(LIBOBJ_WASM) $(LIBOBJ_BPF)
|
2014-04-29 09:00:34 +02:00
|
|
|
LIBOBJ += $(OBJDIR)/MCInst.o
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-02-28 23:09:04 +08:00
|
|
|
|
2015-05-21 12:58:38 +08:00
|
|
|
ifeq ($(PKG_EXTRA),)
|
|
|
|
PKGCFGDIR = $(LIBDATADIR)/pkgconfig
|
|
|
|
else
|
2014-04-12 23:10:46 +08:00
|
|
|
PKGCFGDIR ?= $(LIBDATADIR)/pkgconfig
|
2017-04-14 18:43:06 +08:00
|
|
|
ifeq ($(PKGCFGDIR),)
|
|
|
|
PKGCFGDIR = $(LIBDATADIR)/pkgconfig
|
|
|
|
endif
|
2015-05-21 12:58:38 +08:00
|
|
|
endif
|
|
|
|
|
2015-02-24 04:55:55 +01:00
|
|
|
API_MAJOR=$(shell echo `grep -e CS_API_MAJOR include/capstone/capstone.h | grep -v = | awk '{print $$3}'` | awk '{print $$1}')
|
2014-03-17 17:31:33 +08:00
|
|
|
VERSION_EXT =
|
2014-02-24 15:17:40 +08:00
|
|
|
|
2017-02-06 13:24:33 +01:00
|
|
|
IS_APPLE := $(shell $(CC) -dM -E - < /dev/null 2> /dev/null | grep __apple_build_version__ | wc -l | tr -d " ")
|
2014-05-01 14:14:57 +02:00
|
|
|
ifeq ($(IS_APPLE),1)
|
2018-07-28 00:24:14 +08:00
|
|
|
# on MacOS, do not build in Universal format by default
|
|
|
|
MACOS_UNIVERSAL ?= no
|
2017-09-05 16:45:48 +02:00
|
|
|
ifeq ($(MACOS_UNIVERSAL),yes)
|
|
|
|
CFLAGS += $(foreach arch,$(LIBARCHS),-arch $(arch))
|
|
|
|
LDFLAGS += $(foreach arch,$(LIBARCHS),-arch $(arch))
|
|
|
|
endif
|
2013-11-27 12:11:31 +08:00
|
|
|
EXT = dylib
|
2014-02-04 08:37:55 +01:00
|
|
|
VERSION_EXT = $(API_MAJOR).$(EXT)
|
2014-05-14 02:13:36 -05:00
|
|
|
$(LIBNAME)_LDFLAGS += -dynamiclib -install_name lib$(LIBNAME).$(VERSION_EXT) -current_version $(PKG_MAJOR).$(PKG_MINOR).$(PKG_EXTRA) -compatibility_version $(PKG_MAJOR).$(PKG_MINOR)
|
2013-12-25 23:54:45 +08:00
|
|
|
AR_EXT = a
|
2014-04-12 18:02:55 +08:00
|
|
|
# Homebrew wants to make sure its formula does not disable FORTIFY_SOURCE
|
2014-04-29 14:25:15 +08:00
|
|
|
# However, this is not really necessary because 'CAPSTONE_USE_SYS_DYN_MEM=yes' by default
|
2014-03-29 22:36:05 +08:00
|
|
|
ifneq ($(HOMEBREW_CAPSTONE),1)
|
2014-04-29 14:25:15 +08:00
|
|
|
ifneq ($(CAPSTONE_USE_SYS_DYN_MEM),yes)
|
2014-03-07 22:06:51 +08:00
|
|
|
# remove string check because OSX kernel complains about missing symbols
|
|
|
|
CFLAGS += -D_FORTIFY_SOURCE=0
|
|
|
|
endif
|
2014-03-29 22:36:05 +08:00
|
|
|
endif
|
2013-11-27 15:38:44 +01:00
|
|
|
else
|
2017-09-05 16:45:48 +02:00
|
|
|
CFLAGS += $(foreach arch,$(LIBARCHS),-arch $(arch))
|
|
|
|
LDFLAGS += $(foreach arch,$(LIBARCHS),-arch $(arch))
|
2014-05-14 02:13:36 -05:00
|
|
|
$(LIBNAME)_LDFLAGS += -shared
|
2013-11-28 18:22:50 +00:00
|
|
|
# Cygwin?
|
2017-02-06 13:24:33 +01:00
|
|
|
IS_CYGWIN := $(shell $(CC) -dumpmachine 2>/dev/null | grep -i cygwin | wc -l)
|
2013-11-28 18:22:50 +00:00
|
|
|
ifeq ($(IS_CYGWIN),1)
|
|
|
|
EXT = dll
|
2014-05-14 14:53:51 +08:00
|
|
|
AR_EXT = lib
|
2013-11-28 18:22:50 +00:00
|
|
|
# Cygwin doesn't like -fPIC
|
|
|
|
CFLAGS := $(CFLAGS:-fPIC=)
|
|
|
|
# On Windows we need the shared library to be executable
|
|
|
|
else
|
|
|
|
# mingw?
|
2018-11-20 18:46:12 +02:00
|
|
|
IS_MINGW := $(shell $(CC) --version 2>/dev/null | grep -i "\(mingw\|MSYS\)" | wc -l)
|
2013-11-28 18:22:50 +00:00
|
|
|
ifeq ($(IS_MINGW),1)
|
|
|
|
EXT = dll
|
2014-05-14 14:53:51 +08:00
|
|
|
AR_EXT = lib
|
2013-11-28 18:22:50 +00:00
|
|
|
# mingw doesn't like -fPIC either
|
|
|
|
CFLAGS := $(CFLAGS:-fPIC=)
|
|
|
|
# On Windows we need the shared library to be executable
|
2013-12-25 23:54:45 +08:00
|
|
|
else
|
|
|
|
# Linux, *BSD
|
2014-03-17 17:31:33 +08:00
|
|
|
EXT = so
|
|
|
|
VERSION_EXT = $(EXT).$(API_MAJOR)
|
2014-03-17 10:37:08 +08:00
|
|
|
AR_EXT = a
|
2014-05-14 02:13:36 -05:00
|
|
|
$(LIBNAME)_LDFLAGS += -Wl,-soname,lib$(LIBNAME).$(VERSION_EXT)
|
2013-11-28 18:22:50 +00:00
|
|
|
endif
|
|
|
|
endif
|
2013-11-27 12:11:31 +08:00
|
|
|
endif
|
|
|
|
|
2014-05-01 16:00:52 +02:00
|
|
|
ifeq ($(CAPSTONE_SHARED),yes)
|
2014-06-04 00:26:33 +08:00
|
|
|
ifeq ($(IS_MINGW),1)
|
2016-04-30 12:32:59 -04:00
|
|
|
LIBRARY = $(BLDIR)/$(LIBNAME).$(VERSION_EXT)
|
2014-06-04 00:26:33 +08:00
|
|
|
else ifeq ($(IS_CYGWIN),1)
|
2016-04-30 12:32:59 -04:00
|
|
|
LIBRARY = $(BLDIR)/$(LIBNAME).$(VERSION_EXT)
|
2014-06-04 00:26:33 +08:00
|
|
|
else # *nix
|
2016-04-30 12:32:59 -04:00
|
|
|
LIBRARY = $(BLDIR)/lib$(LIBNAME).$(VERSION_EXT)
|
2015-02-26 18:37:32 +01:00
|
|
|
CFLAGS += -fvisibility=hidden
|
2014-05-01 16:00:52 +02:00
|
|
|
endif
|
2014-06-04 00:26:33 +08:00
|
|
|
endif
|
|
|
|
|
2014-05-01 16:00:52 +02:00
|
|
|
ifeq ($(CAPSTONE_STATIC),yes)
|
2014-06-04 00:26:33 +08:00
|
|
|
ifeq ($(IS_MINGW),1)
|
|
|
|
ARCHIVE = $(BLDIR)/$(LIBNAME).$(AR_EXT)
|
|
|
|
else ifeq ($(IS_CYGWIN),1)
|
|
|
|
ARCHIVE = $(BLDIR)/$(LIBNAME).$(AR_EXT)
|
|
|
|
else
|
2014-04-29 16:29:55 +08:00
|
|
|
ARCHIVE = $(BLDIR)/lib$(LIBNAME).$(AR_EXT)
|
2014-05-01 16:00:52 +02:00
|
|
|
endif
|
2014-06-04 00:26:33 +08:00
|
|
|
endif
|
|
|
|
|
2014-04-29 16:29:55 +08:00
|
|
|
PKGCFGF = $(BLDIR)/$(LIBNAME).pc
|
2013-12-06 17:03:41 +01:00
|
|
|
|
2014-02-28 10:49:46 +08:00
|
|
|
.PHONY: all clean install uninstall dist
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2013-12-09 00:38:44 +08:00
|
|
|
all: $(LIBRARY) $(ARCHIVE) $(PKGCFGF)
|
2015-01-30 09:07:51 +08:00
|
|
|
ifeq (,$(findstring yes,$(CAPSTONE_BUILD_CORE_ONLY)))
|
2017-06-02 15:49:10 +02:00
|
|
|
@V=$(V) CC=$(CC) $(MAKE) -C cstool
|
2015-01-28 04:42:34 +08:00
|
|
|
ifndef BUILDDIR
|
2018-05-11 20:36:10 -07:00
|
|
|
$(MAKE) -C tests
|
2018-12-04 09:02:16 +01:00
|
|
|
$(MAKE) -C suite/fuzz
|
2015-01-28 04:42:34 +08:00
|
|
|
else
|
2018-05-11 20:36:10 -07:00
|
|
|
$(MAKE) -C tests BUILDDIR=$(BLDIR)
|
2018-12-04 09:02:16 +01:00
|
|
|
$(MAKE) -C suite/fuzz BUILDDIR=$(BLDIR)
|
2015-01-28 04:42:34 +08:00
|
|
|
endif
|
2016-09-03 10:54:56 +09:00
|
|
|
$(call install-library,$(BLDIR)/tests/)
|
2014-05-01 16:00:52 +02:00
|
|
|
endif
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-05-01 16:00:52 +02:00
|
|
|
ifeq ($(CAPSTONE_SHARED),yes)
|
2014-02-28 02:44:07 +01:00
|
|
|
$(LIBRARY): $(LIBOBJ)
|
2014-05-01 15:22:25 +02:00
|
|
|
ifeq ($(V),0)
|
2014-06-03 23:43:53 +07:00
|
|
|
$(call log,LINK,$(@:$(BLDIR)/%=%))
|
2014-05-01 15:22:25 +02:00
|
|
|
@$(create-library)
|
|
|
|
else
|
|
|
|
$(create-library)
|
|
|
|
endif
|
2014-05-01 16:00:52 +02:00
|
|
|
endif
|
2013-11-27 15:31:26 +01:00
|
|
|
|
2016-10-23 02:09:14 +08:00
|
|
|
$(LIBOBJ): config.mk *.h include/capstone/*.h
|
2014-03-27 17:54:27 +08:00
|
|
|
|
2014-02-28 23:09:04 +08:00
|
|
|
$(LIBOBJ_ARM): $(DEP_ARM)
|
|
|
|
$(LIBOBJ_ARM64): $(DEP_ARM64)
|
2015-08-03 18:45:08 +02:00
|
|
|
$(LIBOBJ_M68K): $(DEP_M68K)
|
2014-02-28 23:09:04 +08:00
|
|
|
$(LIBOBJ_MIPS): $(DEP_MIPS)
|
|
|
|
$(LIBOBJ_PPC): $(DEP_PPC)
|
2014-03-10 11:58:57 +08:00
|
|
|
$(LIBOBJ_SPARC): $(DEP_SPARC)
|
2014-03-23 08:35:45 +08:00
|
|
|
$(LIBOBJ_SYSZ): $(DEP_SYSZ)
|
2014-02-28 23:09:04 +08:00
|
|
|
$(LIBOBJ_X86): $(DEP_X86)
|
2014-05-26 23:02:48 +08:00
|
|
|
$(LIBOBJ_XCORE): $(DEP_XCORE)
|
2016-05-03 15:52:11 +03:00
|
|
|
$(LIBOBJ_TMS320C64X): $(DEP_TMS320C64X)
|
M680X: Target ready for pull request (#1034)
* Added new M680X target. Supports M6800/1/2/3/9, HD6301
* M680X: Reformat for coding guide lines. Set alphabetical order in HACK.TXT
* M680X: Prepare for python binding. Move cs_m680x, m680x_insn to m680x_info. Chec
> k cpu type, no default.
* M680X: Add python bindings. Added python tests.
* M680X: Added cpu types to usage message.
* cstool: Avoid segfault for invalid <arch+mode>.
* Make test_m680x.c/test_m680x.py output comparable (diff params: -bu). Keep xprint.py untouched.
* M680X: Update CMake/make for m680x support. Update .gitignore.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Make test_m680x.c/test_m680x.py output comparable (diff params: -bu).
* M680X: Add ocaml bindings and tests.
* M680X: Add java bindings and tests.
* M680X: Added tests for all indexed addressing modes. C/Python/Ocaml
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Used M680X_FIRST_OP_IN_MNEM in tests C/python/java/ocaml.
* M680X: Added access property to cs_m680x_op.
* M680X: Added operand size.
* M680X: Remove compiler warnings.
* M680X: Added READ/WRITE access property per operator.
* M680X: Make reg_inherent_hdlr independent of CPU type.
* M680X: Add HD6309 support + bug fixes
* M680X: Remove errors and warning.
* M680X: Add Bcc/LBcc to group BRAREL (relative branch).
* M680X: Add group JUMP to BVS/BVC/LBVS/LBVC. Remove BRAREL from BRN/LBRN.
* M680X: Remove LBRN from group BRAREL.
* M680X: Refactored cpu_type initialization for better readability.
* M680X: Add two operands for insn having two reg. in mnemonic. e.g. ABX.
* M680X: Remove typo in cstool.c
* M680X: Some format improvements in changed_regs.
* M680X: Remove insn id string list from tests (C/python/java/ocaml).
* M680X: SEXW, set access of reg. D to WRITE.
* M680X: Sort changed_regs in increasing m680x_insn order.
* M680X: Add M68HC11 support + Reduced from two to one INDEXED operand.
* M680X: cstool, also write '(in mnemonic)' for second reg. operand.
* M680X: Add BRN/LBRN to group JUMP and BRAREL.
* M680X: For Bcc/LBcc/BRSET/BRCLR set reg. CC to read access.
* M680X: Correctly print negative immediate values with option CS_OPT_UNSIGNED.
* M680X: Rename some instruction handlers.
* M680X: Add M68HC05 support.
* M680X: Dont print prefix '<' for direct addr. mode.
* M680X: Add M68HC08 support + resorted tables + bug fixes.
* M680X: Add Freescale HCS08 support.
* M680X: Changed group names, avoid spaces.
* M680X: Refactoring, rename addessing mode handlers.
* M680X: indexed addr. mode, changed pre/post inc-/decrement representation.
* M680X: Rename some M6809/HD6309 specific functions.
* M680X: Add CPU12 (68HC12/HCS12) support.
* M680X: Correctly display illegal instruction as FCB .
* M680X: bugfix: BRA/BRN/BSR/LBRA/LBRN/LBSR does not read CC reg.
* M680X: bugfix: Correctly check for sufficient code size for M6809 indexed addressing.
* M680X: Better support for changing insn id within handler for addessing mode.
* M680X: Remove warnings.
* M680X: In set_changed_regs_read_write_counts use own access_mode.
* M680X: Split cpu specific tables into separate *.inc files.
* M680X: Remove warnings.
* M680X: Removed address_mode. Addressing mode is available in operand.type
* M680X: Bugfix: BSET/BCLR/BRSET/BRCLR correct read/modify CC reg.
* M680X: Remove register TMP1. It is first visible in CPU12X.
* M680X: Performance improvement + bug fixes.
* M680X: Performance improvement, make cpu_tables const static.
* M680X: Simplify operand decoding by using two handlers.
* M680X: Replace M680X_OP_INDEX by M680X_OP_CONSTANT + bugfix in java/python/ocaml bindings.
* M680X: Format with astyle.
* M680X: Update documentation.
* M680X: Corrected author for m680x specific files.
* M680X: Make max. number of architectures single source.
2017-10-21 15:44:36 +02:00
|
|
|
$(LIBOBJ_M680X): $(DEP_M680X)
|
2018-03-31 17:29:22 +08:00
|
|
|
$(LIBOBJ_EVM): $(DEP_EVM)
|
2019-02-01 23:03:47 +08:00
|
|
|
$(LIBOBJ_WASM): $(DEP_WASM)
|
2018-12-02 21:39:41 +01:00
|
|
|
$(LIBOBJ_MOS65XX): $(DEP_MOS65XX)
|
2019-02-18 17:39:51 +08:00
|
|
|
$(LIBOBJ_BPF): $(DEP_BPF)
|
2014-02-28 23:09:04 +08:00
|
|
|
|
2014-05-01 16:00:52 +02:00
|
|
|
ifeq ($(CAPSTONE_STATIC),yes)
|
2013-12-06 17:03:41 +01:00
|
|
|
$(ARCHIVE): $(LIBOBJ)
|
2014-05-01 15:22:25 +02:00
|
|
|
@rm -f $(ARCHIVE)
|
|
|
|
ifeq ($(V),0)
|
|
|
|
$(call log,AR,$(@:$(BLDIR)/%=%))
|
|
|
|
@$(create-archive)
|
|
|
|
else
|
|
|
|
$(create-archive)
|
|
|
|
endif
|
2014-05-01 16:00:52 +02:00
|
|
|
endif
|
2013-12-03 04:11:37 +01:00
|
|
|
|
2013-12-06 17:03:41 +01:00
|
|
|
$(PKGCFGF):
|
2014-05-01 15:22:25 +02:00
|
|
|
ifeq ($(V),0)
|
|
|
|
$(call log,GEN,$(@:$(BLDIR)/%=%))
|
|
|
|
@$(generate-pkgcfg)
|
2014-03-07 17:11:18 +08:00
|
|
|
else
|
2014-05-01 15:22:25 +02:00
|
|
|
$(generate-pkgcfg)
|
2014-03-07 17:11:18 +08:00
|
|
|
endif
|
2013-12-03 04:11:37 +01:00
|
|
|
|
2013-12-06 17:03:41 +01:00
|
|
|
install: $(PKGCFGF) $(ARCHIVE) $(LIBRARY)
|
2018-12-19 09:41:34 +08:00
|
|
|
mkdir -p $(LIBDIR)
|
|
|
|
$(call install-library,$(LIBDIR))
|
2014-05-01 16:00:52 +02:00
|
|
|
ifeq ($(CAPSTONE_STATIC),yes)
|
2018-12-19 09:41:34 +08:00
|
|
|
$(INSTALL_DATA) $(ARCHIVE) $(LIBDIR)
|
2014-05-01 16:00:52 +02:00
|
|
|
endif
|
2016-10-13 20:45:24 +08:00
|
|
|
mkdir -p $(DESTDIR)$(INCDIR)/$(LIBNAME)
|
|
|
|
$(INSTALL_DATA) include/capstone/*.h $(DESTDIR)$(INCDIR)/$(LIBNAME)
|
2018-12-19 09:21:07 +07:00
|
|
|
mkdir -p $(PKGCFGDIR)
|
|
|
|
$(INSTALL_DATA) $(PKGCFGF) $(PKGCFGDIR)
|
|
|
|
mkdir -p $(BINDIR)
|
|
|
|
$(INSTALL_LIB) cstool/cstool $(BINDIR)
|
2013-11-27 12:11:31 +08:00
|
|
|
|
|
|
|
uninstall:
|
2016-10-13 20:45:24 +08:00
|
|
|
rm -rf $(DESTDIR)$(INCDIR)/$(LIBNAME)
|
2018-12-19 07:52:20 +00:00
|
|
|
rm -f $(LIBDIR)/lib$(LIBNAME).*
|
2018-12-19 09:21:07 +07:00
|
|
|
rm -f $(PKGCFGDIR)/$(LIBNAME).pc
|
2018-12-19 09:25:04 +07:00
|
|
|
rm -f $(BINDIR)/cstool
|
2013-11-27 12:11:31 +08:00
|
|
|
|
|
|
|
clean:
|
2014-04-29 16:24:30 +08:00
|
|
|
rm -f $(LIBOBJ)
|
2017-05-05 09:46:46 +08:00
|
|
|
rm -f $(BLDIR)/lib$(LIBNAME).* $(BLDIR)/$(LIBNAME).pc
|
2014-01-09 10:35:58 +08:00
|
|
|
rm -f $(PKGCFGF)
|
2016-10-10 22:54:16 +08:00
|
|
|
$(MAKE) -C cstool clean
|
2015-01-28 00:35:44 +07:00
|
|
|
|
2015-01-30 09:07:51 +08:00
|
|
|
ifeq (,$(findstring yes,$(CAPSTONE_BUILD_CORE_ONLY)))
|
2018-05-11 20:36:10 -07:00
|
|
|
$(MAKE) -C tests clean
|
2018-12-04 09:02:16 +01:00
|
|
|
$(MAKE) -C suite/fuzz clean
|
2014-04-29 16:29:55 +08:00
|
|
|
rm -f $(BLDIR)/tests/lib$(LIBNAME).$(EXT)
|
2015-01-28 00:35:44 +07:00
|
|
|
endif
|
2014-04-29 16:29:55 +08:00
|
|
|
|
|
|
|
ifdef BUILDDIR
|
|
|
|
rm -rf $(BUILDDIR)
|
|
|
|
endif
|
2014-04-29 16:24:30 +08:00
|
|
|
|
2015-01-30 09:07:51 +08:00
|
|
|
ifeq (,$(findstring yes,$(CAPSTONE_BUILD_CORE_ONLY)))
|
2018-05-11 20:36:10 -07:00
|
|
|
$(MAKE) -C bindings/python clean
|
|
|
|
$(MAKE) -C bindings/java clean
|
|
|
|
$(MAKE) -C bindings/ocaml clean
|
2015-01-28 00:35:44 +07:00
|
|
|
endif
|
2013-11-27 12:11:31 +08:00
|
|
|
|
2014-01-18 12:47:15 +08:00
|
|
|
|
|
|
|
TAG ?= HEAD
|
|
|
|
ifeq ($(TAG), HEAD)
|
|
|
|
DIST_VERSION = latest
|
|
|
|
else
|
|
|
|
DIST_VERSION = $(TAG)
|
2014-01-18 03:42:15 +01:00
|
|
|
endif
|
2014-01-18 12:47:15 +08:00
|
|
|
|
|
|
|
dist:
|
2014-01-22 18:46:20 +08:00
|
|
|
git archive --format=tar.gz --prefix=capstone-$(DIST_VERSION)/ $(TAG) > capstone-$(DIST_VERSION).tgz
|
2014-03-11 12:29:16 +08:00
|
|
|
git archive --format=zip --prefix=capstone-$(DIST_VERSION)/ $(TAG) > capstone-$(DIST_VERSION).zip
|
2014-01-18 03:42:15 +01:00
|
|
|
|
2014-10-01 16:42:29 +08:00
|
|
|
|
2016-02-29 22:58:57 -05:00
|
|
|
TESTS = test_basic test_detail test_arm test_arm64 test_m68k test_mips test_ppc test_sparc
|
2019-02-18 17:39:51 +08:00
|
|
|
TESTS += test_systemz test_x86 test_xcore test_iter test_evm test_mos65xx test_wasm test_bpf
|
2017-05-11 08:58:12 -07:00
|
|
|
TESTS += test_basic.static test_detail.static test_arm.static test_arm64.static
|
2015-08-03 18:45:08 +02:00
|
|
|
TESTS += test_m68k.static test_mips.static test_ppc.static test_sparc.static
|
M680X: Target ready for pull request (#1034)
* Added new M680X target. Supports M6800/1/2/3/9, HD6301
* M680X: Reformat for coding guide lines. Set alphabetical order in HACK.TXT
* M680X: Prepare for python binding. Move cs_m680x, m680x_insn to m680x_info. Chec
> k cpu type, no default.
* M680X: Add python bindings. Added python tests.
* M680X: Added cpu types to usage message.
* cstool: Avoid segfault for invalid <arch+mode>.
* Make test_m680x.c/test_m680x.py output comparable (diff params: -bu). Keep xprint.py untouched.
* M680X: Update CMake/make for m680x support. Update .gitignore.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Reduce compiler warnings.
* M680X: Make test_m680x.c/test_m680x.py output comparable (diff params: -bu).
* M680X: Add ocaml bindings and tests.
* M680X: Add java bindings and tests.
* M680X: Added tests for all indexed addressing modes. C/Python/Ocaml
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Naming, use page1 for PAGE1 instructions (without prefix).
* M680X: Used M680X_FIRST_OP_IN_MNEM in tests C/python/java/ocaml.
* M680X: Added access property to cs_m680x_op.
* M680X: Added operand size.
* M680X: Remove compiler warnings.
* M680X: Added READ/WRITE access property per operator.
* M680X: Make reg_inherent_hdlr independent of CPU type.
* M680X: Add HD6309 support + bug fixes
* M680X: Remove errors and warning.
* M680X: Add Bcc/LBcc to group BRAREL (relative branch).
* M680X: Add group JUMP to BVS/BVC/LBVS/LBVC. Remove BRAREL from BRN/LBRN.
* M680X: Remove LBRN from group BRAREL.
* M680X: Refactored cpu_type initialization for better readability.
* M680X: Add two operands for insn having two reg. in mnemonic. e.g. ABX.
* M680X: Remove typo in cstool.c
* M680X: Some format improvements in changed_regs.
* M680X: Remove insn id string list from tests (C/python/java/ocaml).
* M680X: SEXW, set access of reg. D to WRITE.
* M680X: Sort changed_regs in increasing m680x_insn order.
* M680X: Add M68HC11 support + Reduced from two to one INDEXED operand.
* M680X: cstool, also write '(in mnemonic)' for second reg. operand.
* M680X: Add BRN/LBRN to group JUMP and BRAREL.
* M680X: For Bcc/LBcc/BRSET/BRCLR set reg. CC to read access.
* M680X: Correctly print negative immediate values with option CS_OPT_UNSIGNED.
* M680X: Rename some instruction handlers.
* M680X: Add M68HC05 support.
* M680X: Dont print prefix '<' for direct addr. mode.
* M680X: Add M68HC08 support + resorted tables + bug fixes.
* M680X: Add Freescale HCS08 support.
* M680X: Changed group names, avoid spaces.
* M680X: Refactoring, rename addessing mode handlers.
* M680X: indexed addr. mode, changed pre/post inc-/decrement representation.
* M680X: Rename some M6809/HD6309 specific functions.
* M680X: Add CPU12 (68HC12/HCS12) support.
* M680X: Correctly display illegal instruction as FCB .
* M680X: bugfix: BRA/BRN/BSR/LBRA/LBRN/LBSR does not read CC reg.
* M680X: bugfix: Correctly check for sufficient code size for M6809 indexed addressing.
* M680X: Better support for changing insn id within handler for addessing mode.
* M680X: Remove warnings.
* M680X: In set_changed_regs_read_write_counts use own access_mode.
* M680X: Split cpu specific tables into separate *.inc files.
* M680X: Remove warnings.
* M680X: Removed address_mode. Addressing mode is available in operand.type
* M680X: Bugfix: BSET/BCLR/BRSET/BRCLR correct read/modify CC reg.
* M680X: Remove register TMP1. It is first visible in CPU12X.
* M680X: Performance improvement + bug fixes.
* M680X: Performance improvement, make cpu_tables const static.
* M680X: Simplify operand decoding by using two handlers.
* M680X: Replace M680X_OP_INDEX by M680X_OP_CONSTANT + bugfix in java/python/ocaml bindings.
* M680X: Format with astyle.
* M680X: Update documentation.
* M680X: Corrected author for m680x specific files.
* M680X: Make max. number of architectures single source.
2017-10-21 15:44:36 +02:00
|
|
|
TESTS += test_systemz.static test_x86.static test_xcore.static test_m680x.static
|
2018-07-20 12:36:50 +08:00
|
|
|
TESTS += test_skipdata test_skipdata.static test_iter.static test_evm.static
|
2019-02-18 17:39:51 +08:00
|
|
|
TESTS += test_mos65xx.static test_wasm.static test_bpf.static
|
2018-12-11 03:33:31 +01:00
|
|
|
check: $(TESTS) fuzztest fuzzallcorp
|
2018-05-25 08:59:30 -04:00
|
|
|
test_%:
|
|
|
|
./tests/$@ > /dev/null && echo OK || echo FAILED
|
2014-10-01 16:42:29 +08:00
|
|
|
|
2018-12-04 09:02:16 +01:00
|
|
|
FUZZ_INPUTS = $(shell find suite/MC -type f -name '*.cs')
|
|
|
|
|
|
|
|
fuzztest:
|
|
|
|
./suite/fuzz/fuzz_disasm $(FUZZ_INPUTS)
|
|
|
|
|
2018-12-11 03:33:31 +01:00
|
|
|
fuzzallcorp:
|
2018-12-19 08:43:31 +01:00
|
|
|
ifneq ($(wildcard suite/fuzz/corpus-libFuzzer-capstone_fuzz_disasmnext-latest),)
|
2019-02-04 10:07:03 +01:00
|
|
|
./suite/fuzz/fuzz_bindisasm suite/fuzz/corpus-libFuzzer-capstone_fuzz_disasmnext-latest/ > fuzz_bindisasm.log || (tail -1 fuzz_bindisasm.log; false)
|
2018-12-19 08:43:31 +01:00
|
|
|
else
|
|
|
|
@echo "Skipping tests on whole corpus"
|
|
|
|
endif
|
2018-12-11 03:33:31 +01:00
|
|
|
|
2014-04-29 09:00:34 +02:00
|
|
|
$(OBJDIR)/%.o: %.c
|
|
|
|
@mkdir -p $(@D)
|
2014-05-01 15:22:25 +02:00
|
|
|
ifeq ($(V),0)
|
|
|
|
$(call log,CC,$(@:$(OBJDIR)/%=%))
|
|
|
|
@$(compile)
|
|
|
|
else
|
|
|
|
$(compile)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2016-09-03 10:54:56 +09:00
|
|
|
ifeq ($(CAPSTONE_SHARED),yes)
|
|
|
|
define install-library
|
|
|
|
$(INSTALL_LIB) $(LIBRARY) $1
|
|
|
|
$(if $(VERSION_EXT),
|
|
|
|
cd $1 && \
|
2016-09-11 09:00:32 +09:00
|
|
|
rm -f lib$(LIBNAME).$(EXT) && \
|
2016-09-03 10:54:56 +09:00
|
|
|
ln -s lib$(LIBNAME).$(VERSION_EXT) lib$(LIBNAME).$(EXT))
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define install-library
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2014-05-01 15:22:25 +02:00
|
|
|
define create-archive
|
|
|
|
$(AR) q $(ARCHIVE) $(LIBOBJ)
|
|
|
|
$(RANLIB) $(ARCHIVE)
|
|
|
|
endef
|
|
|
|
|
2014-05-01 22:53:52 +08:00
|
|
|
|
2014-05-01 15:22:25 +02:00
|
|
|
define create-library
|
2014-05-14 02:13:36 -05:00
|
|
|
$(CC) $(LDFLAGS) $($(LIBNAME)_LDFLAGS) $(LIBOBJ) -o $(LIBRARY)
|
2014-05-01 15:22:25 +02:00
|
|
|
endef
|
|
|
|
|
2014-05-01 22:53:52 +08:00
|
|
|
|
2014-05-01 15:22:25 +02:00
|
|
|
define generate-pkgcfg
|
2015-04-23 17:55:06 +02:00
|
|
|
mkdir -p $(BLDIR)
|
2014-05-01 15:22:25 +02:00
|
|
|
echo 'Name: capstone' > $(PKGCFGF)
|
|
|
|
echo 'Description: Capstone disassembly engine' >> $(PKGCFGF)
|
|
|
|
echo 'Version: $(PKG_VERSION)' >> $(PKGCFGF)
|
|
|
|
echo 'libdir=$(LIBDIR)' >> $(PKGCFGF)
|
2019-01-12 06:07:02 +00:00
|
|
|
echo 'includedir=$(INCDIR)/capstone' >> $(PKGCFGF)
|
2014-05-01 15:22:25 +02:00
|
|
|
echo 'archive=$${libdir}/libcapstone.a' >> $(PKGCFGF)
|
|
|
|
echo 'Libs: -L$${libdir} -lcapstone' >> $(PKGCFGF)
|
|
|
|
echo 'Cflags: -I$${includedir}' >> $(PKGCFGF)
|
|
|
|
endef
|