1
2-------------------
3Requirement
4-------------------
5
6YASM - for compiling the asm source (Currently only needed in x86 and AMD64 platforms),
7       if you don't have it, the corresponding C++ code will be used and ASM codes will not build
8       even the assembly option is enabled.
9
10
11-------------------
12Compile
13-------------------
14$ ./configure
15$ make
16
17--enable-assembly to compile with ASM support (The default is yes)
18
19-------------------
20Install
21-------------------
22$ make install
23(need to be root)
24
25
26then the lib will be installed to the default usr lib of your system (/usr/lib)
27named libmac.so*, the console frontend (now it is statically linked) to /usr/bin named
28mac, and some header files to /usr/include/mac.
29
30There is also a sample analyzing program, located in src/Examples/Analyzer/Sample1,
31which displays some information of the specified file. It is not installed.
32
33Enjoy It!
34