aboutsummaryrefslogtreecommitdiffstats
path: root/README.autotools
diff options
context:
space:
mode:
Diffstat (limited to 'README.autotools')
-rw-r--r--README.autotools11
1 files changed, 8 insertions, 3 deletions
diff --git a/README.autotools b/README.autotools
index 4b83a222..a67c1c8d 100644
--- a/README.autotools
+++ b/README.autotools
@@ -1,8 +1,13 @@
Where are the ./configure script and the Makefile's?
Configure and Make scripts are not included in the git source tree. They are
-automatically generated by the SConstruct script.
+automatically generated by the CMake script.
-Just type "scons autotools" to generate everything needed for the traditional
-./configure, make, make install build process.
+Just use the following instruction to generate everything needed for the
+traditional "make" and "make install" build process.
+
+ cmake -G "Unix Makefiles"
+
+Please note that "configure" script is not needed anymore, as platform
+checks are now done by CMake.