allow to set archs to be compiled in from environment variable CAPSTONE_ARCHS

This commit is contained in:
Nguyen Anh Quynh 2014-04-28 11:53:19 +08:00
parent 7751fbe57b
commit 4f2049b346
1 changed files with 1 additions and 22 deletions

View File

@ -3,29 +3,8 @@
################################################################################
# Specify which archs you want to compile in. By default, we build all archs.
# DO NOT touch the line below.
CAPSTONE_ARCHS =
# Comment out the line below if you don't want to support ARM
CAPSTONE_ARCHS += arm
# Comment out the line below if you don't want to support ARM64
CAPSTONE_ARCHS += aarch64
# Comment out the line below if you don't want to support Mips
CAPSTONE_ARCHS += mips
# Comment out the line below if you don't want to support PowerPC
CAPSTONE_ARCHS += powerpc
# Comment out the line below if you don't want to support Sparc
CAPSTONE_ARCHS += sparc
# Comment out the line below if you don't want to support SystemZ
CAPSTONE_ARCHS += systemz
# Comment out the line below if you don't want to support Intel (16/32/64-bit)
CAPSTONE_ARCHS += x86
CAPSTONE_ARCHS ?= arm aarch64 mips powerpc sparc systemz x86
################################################################################