mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-30 17:00:26 +00:00
15 lines
394 B
Makefile
15 lines
394 B
Makefile
# Specify which archs you want to compile in
|
|
CAPSTONE_ARCHS =
|
|
|
|
# Comment the line below if you don't want to ARM support
|
|
CAPSTONE_ARCHS += arm
|
|
|
|
# Comment the line below if you don't want to ARM64 support
|
|
CAPSTONE_ARCHS += aarch64
|
|
|
|
# Comment the line below if you don't want to Mips support
|
|
CAPSTONE_ARCHS += mips
|
|
|
|
# Comment the line below if you don't want to X86 support
|
|
CAPSTONE_ARCHS += x86
|