# Compilando em Gnu-Linux

    ./configure
    make
    make install

# Compiling on Windows from msys2

We need have installed the **msys2**, you can download [here](http://msys2.github.io/).

Later, we need update the **msys2** system.

    pacman -Su

Now, we should istall the compiling tools.

    pacman -S --needed base-devel
    # 64 bits tools
    pacman -S --needed mingw-w64-x86_64-toolchain
    # 32 bits tools
    pacman -S --needed mingw-w64-i686-toolchain 

Finally, to compile

    #./autogen.sh
    ./configure
    make
    make install


