Guys, can someone explain, how to compile executable miner from source?
Any guide or something else, thanks!

for linux
git clone https://bitbucket.org/dstorm/cpuminer-twe.git
./autogen.sh # only needed if building from git repo
./configure CFLAGS="-O3"
make
Executable miner for Windows, can't find detailed guide in google =(
How to compile under windows:
Basic Windows build instructions, using MinGW:
Install MinGW and the MSYS Developer Tool Kit (http://www.mingw.org/)
* Make sure you have mstcpip.h in MinGW\include
If using MinGW-w64, install pthreads-w64
Install libcurl devel (http://curl.haxx.se/download.html)
* Make sure you have libcurl.m4 in MinGW\share\aclocal
* Make sure you have curl-config in MinGW\bin
In the MSYS shell, run:
./autogen.sh # only needed if building from git repo
LIBCURL="-lcurldll" ./configure CFLAGS="-O3"
make