diff --git a/dox/dev_guides/building/android/android.md b/dox/dev_guides/building/android/android.md
index 5408efff68..f6b81552f7 100644
--- a/dox/dev_guides/building/android/android.md
+++ b/dox/dev_guides/building/android/android.md
@@ -1,19 +1,21 @@
-Building with CMake and ADT for Android {#occt_dev_guides__building_android}
+Building with CMake for Android {#occt_dev_guides__building_android}
===================
@tableofcontents
-This file describes the steps to build OCCT libraries from a complete source package
-with following tools:
- - Generation of eclipse project files
- - CMake v3.0+ http://www.cmake.org/cmake/resources/software.html
- - Cross-compilation toolchain for CMake https://github.com/taka-no-me/android-cmake
- - Android NDK rev.10+ https://developer.android.com/tools/sdk/ndk/index.html
- - Make: MinGW v4.82+ for Windows, GNU Make vXX for Linux. http://sourceforge.net/projects/mingw/files/
- - Building eclipse project files of OCCT
- - Android Developer Tools (ADT) v22+ https://developer.android.com/sdk/index.html
+This article describes the steps to build OCCT libraries for Android from a complete source package
+with GNU make (makefiles) on Windows 7 and Ubuntu 15.10.
-## Generation of eclipse project files
+The steps on Windows and Ubuntu are similar. There is the only one difference: makefiles are built with mingw32-make
+on Windows and native GNU make on Ubuntu.
+
+Required tools (download and install if it is required):
+ - CMake v3.0+ http://www.cmake.org/cmake/resources/software.html
+ - Cross-compilation toolchain for CMake https://github.com/taka-no-me/android-cmake
+ - Android NDK rev.10+ https://developer.android.com/tools/sdk/ndk/index.html
+ - GNU Make: MinGW v4.82+ for Windows (http://sourceforge.net/projects/mingw/files/), GNU Make 4.0 for Ubuntu.
+
+## Generation of makefiles
Run GUI tool provided by CMake: cmake-gui
### Tools configuration
@@ -22,21 +24,23 @@ Run GUI tool provided by CMake: cmake-gui
@figure{/dev_guides/building/android/images/android_image001.png}
-Click **Configure** button. It opens the window with a drop-down list of generators supported by CMake project. -
+Click **Configure** button. It opens the window with a drop-down list of generators supported by CMake project.
-Select "Eclipse CDT4 - MinGW MakeFiles" item from the list
+Select "MinGW MakeFiles" item from the list
- Choose "Specify toolchain file for cross-compiling"
- Click "Next"
@figure{/dev_guides/building/android/images/android_image002.png}
- - Specify the Toolchain file at next dialog by android.toolchain.cmake is contained by cross-compilation toolchain for CMake
+
+ - Specify a toolchain file at the next dialog by android.toolchain.cmake . It is contained by cross-compilation toolchain for CMake
- Click "Finish"
@figure{/dev_guides/building/android/images/android_image003.png}
-Add cache entry ANDROID_NDK - path (entry type is PATH) to the NDK folder ("Add Entry" button)
+If ANDROID_NDK environment variable is not defined in current OS, add cache entry ANDROID_NDK (entry type is PATH) - path to the NDK folder ("Add Entry" button)
@figure{/dev_guides/building/android/images/android_image004.png}
-if there is message "CMake Error: CMake was unable to find a build program corresponding to "MinGW Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool."
-Define CMAKE_MAKE_PROGRAM variable with the file path to mingw32-make executable.
+If on Windows the message is appeared: "CMake Error: CMake was unable to find a build program corresponding to "MinGW Makefiles"
+CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool.",
+specify **CMAKE_MAKE_PROGRAM** to mingw32-make executable.
@figure{/dev_guides/building/android/images/android_image005.png}
### OCCT Configuration
@@ -45,27 +49,36 @@ How to configure OCCT, see "OCCT Configuration" section of @ref occt_dev_guides_
taking into account the specific configuration variables for android:
- ANDROID_ABI = armeabi-v7a
- ANDROID_NATIVE_API_LEVEL = 15
- - ANDROID_NDK_LAYOUT is equal to BUILD_CONFIGURATION variable
- - CMAKE_ECLIPSE_VERSION is equal to installed eclipse version (e.g., 4.2)
-
-Configure parallel building:
- - CMAKE_ECLIPSE_MAKE_ARGUMENTS = -jN where N = your numbers of CPU cores (threads)
+ - ANDROID_NDK_LAYOUT is equal to CMAKE_BUILD_TYPE variable
+ - **BUILD_MODULE_Draw = OFF**
@figure{/dev_guides/building/android/images/android_image006.png}
-### Generation of eclipse projects files
+### Generation of makefiles
Click **Generate** button and wait until the generation process is finished.
-Then the eclipse project files will appear in the build folder (e.g. D:/android-build-eclipse-api-15 ).
+Then makefiles will appear in the build folder (e.g. D:/tmp/occt-android ).
-## Building eclipse project files of OCCT
+## Building makefiles of OCCT
- - Open eclipse (downloaded ADT bundle contains it)
- @figure{/dev_guides/building/android/images/android_image007.png}
- - Import "Existing project into Workspace"
- @figure{/dev_guides/building/android/images/android_image008.png}
- @figure{/dev_guides/building/android/images/android_image009.png}
- - Build ALL
- @figure{/dev_guides/building/android/images/android_image010.png}
-
-When the building process has finished, libraries are located in \/out (e.g. D:/android-build-eclipse-api-15/out ).
\ No newline at end of file
+Open console and go to the build folder. Type "mingw32-make" (Windows) or "make" (Ubuntu) to start build process.
+
+> mingw32-make
+or
+> make
+
+
+Parallel building can be started with using **"-jN"** argument of "mingw32-make/make", where N is the number of building threads.
+
+> mingw32-make -j4
+or
+> make -j4
+
+## Install built OCCT libraries
+
+Type "mingw32-make/make" with argument "install" to place the libraries
+to the install folder (see "OCCT Configuration" section of @ref occt_dev_guides__building_cmake "Building with CMake")
+
+> mingw32-make install
+or
+> make install
diff --git a/dox/dev_guides/building/android/images/android_image001.png b/dox/dev_guides/building/android/images/android_image001.png
index 55d5183789..b5c047e951 100644
Binary files a/dox/dev_guides/building/android/images/android_image001.png and b/dox/dev_guides/building/android/images/android_image001.png differ
diff --git a/dox/dev_guides/building/android/images/android_image002.png b/dox/dev_guides/building/android/images/android_image002.png
index c731f9f040..64d002dcea 100644
Binary files a/dox/dev_guides/building/android/images/android_image002.png and b/dox/dev_guides/building/android/images/android_image002.png differ
diff --git a/dox/dev_guides/building/android/images/android_image005.png b/dox/dev_guides/building/android/images/android_image005.png
index d18843c60e..1add49f35c 100644
Binary files a/dox/dev_guides/building/android/images/android_image005.png and b/dox/dev_guides/building/android/images/android_image005.png differ
diff --git a/dox/dev_guides/building/android/images/android_image006.png b/dox/dev_guides/building/android/images/android_image006.png
index efedc15d96..d9d9ff470f 100644
Binary files a/dox/dev_guides/building/android/images/android_image006.png and b/dox/dev_guides/building/android/images/android_image006.png differ
diff --git a/dox/dev_guides/building/android/images/android_image007.png b/dox/dev_guides/building/android/images/android_image007.png
deleted file mode 100644
index 410e8dc657..0000000000
Binary files a/dox/dev_guides/building/android/images/android_image007.png and /dev/null differ
diff --git a/dox/dev_guides/building/android/images/android_image008.png b/dox/dev_guides/building/android/images/android_image008.png
deleted file mode 100644
index 40446e4db7..0000000000
Binary files a/dox/dev_guides/building/android/images/android_image008.png and /dev/null differ
diff --git a/dox/dev_guides/building/android/images/android_image009.png b/dox/dev_guides/building/android/images/android_image009.png
deleted file mode 100644
index 5c3fa6c3be..0000000000
Binary files a/dox/dev_guides/building/android/images/android_image009.png and /dev/null differ
diff --git a/dox/dev_guides/building/android/images/android_image010.png b/dox/dev_guides/building/android/images/android_image010.png
deleted file mode 100644
index c56621abd3..0000000000
Binary files a/dox/dev_guides/building/android/images/android_image010.png and /dev/null differ
diff --git a/dox/dev_guides/building/building.md b/dox/dev_guides/building/building.md
index 2dfd3fc218..bc54a24ac0 100644
--- a/dox/dev_guides/building/building.md
+++ b/dox/dev_guides/building/building.md
@@ -17,7 +17,7 @@ you need to:
2. Build using your preferred build tool.
- \subpage occt_dev_guides__building_automake "Building on Linux with Autotools"
- \subpage occt_dev_guides__building_cmake "Building with CMake (cross-platform)"
- - \subpage occt_dev_guides__building_android "Building with CMake and ADT for Android (cross-platform)"
+ - \subpage occt_dev_guides__building_android "Building with CMake for Android (cross-platform)"
- \subpage occt_dev_guides__building_code_blocks "Building on Mac OS X with Code::Blocks"
- \subpage occt_dev_guides__building_msvc "Building on Windows with MS Visual Studio"
- \subpage occt_dev_guides__building_xcode "Building on Mac OS X with Xcode"