renamed CAPSTONE_NO_ATT to CAPSTONE_X86_ATT_DISABLE, added options to makefile, cmake, compile.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c55c2ec..59c9995 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,6 +22,7 @@
 option(XCORE_SUPPORT "XCore support" ON)
 option(X86_SUPPORT "x86 support" ON)
 option(X86_REDUCE "x86 with reduce instruction sets to minimize library" OFF)
+option(X86_ATT_DISABLE, "Disable x86 AT&T syntax" OFF)
 
 if (BUILD_DIET)
     add_definitions(-DCAPSTONE_DIET)
@@ -35,6 +36,10 @@
     add_definitions(-DCAPSTONE_X86_REDUCE)
 endif ()
 
+if (X86_ATT_DISABLE)
+    add_definitions(-DCAPSTONE_X86_ATT_DISABLE)
+endif ()
+
 ## sources
 set(SOURCES
     cs.c