Commit ca36a4bbeae3bdddd613ef1b19adb3960bb6e7da

Authored by Stéphane Raimbault
1 parent 663084b6

Updated INSTALL (autotools aren't deprecated)

Showing 1 changed file with 15 additions and 7 deletions
1 1 Basic Installation
2 2 ==================
3 3  
  4 +With autotools
  5 +--------------
  6 +
  7 +The shell commands are './configure; make; make install'.
  8 +
  9 +
  10 +With Waf
  11 +--------
  12 +
4 13 The build system is Waf (http://code.google.com/p/waf), the shell commandes are
5   -$ waf configure
6   -$ waf build
7   -$ sudo waf install
  14 +$ ./waf configure
  15 +$ ./waf build
  16 +$ sudo ./waf install
8 17  
9   -or ./waf if you use a local Waf script.
  18 +or 'waf' if you use a global Waf script.
10 19  
11 20 The sources are built in the 'build' directory at the root of the
12 21 project source files.
13 22  
14   -The compilation with autotools is DEPRECATED. The shell commands were
15   -'./configure; make; make install'. Warning, don't use the two build systems at
16   -the same time.
  23 +
  24 +WARNING, don't use the two build systems at the same time.
... ...