Changes between Version 7 and Version 8 of Getting-Started/Autoconf


Ignore:
Timestamp:
Apr 29, 2009 9:50:00 PM (15 years ago)
Author:
ismangil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Autoconf

    v7 v8  
    5656With the new autoconf based build system, most configuration/customization can be specified as configure arguments. The list of customizable features can be viewed by running "./configure --help" command: 
    5757         
    58  
     58{{{ 
    5959$ cd pjproject 
    6060$ ./configure --help 
    6161... 
     62}}} 
     63 
    6264Optional Features: 
    6365--disable-floating-point        Disable floating point where possible 
     
    107109Once the configure script completes successfully, start the build process by invoking these commands: 
    108110         
    109  
     111{{{ 
    110112$ cd pjproject 
    111113$ make dep 
    112114$ make 
     115}}} 
    113116 
    114117Note: 
     
    119122Description of all make targets supported by the Makefile's: 
    120123 
    121 all 
    122     The default (or first) target to build the libraries/binaries.  
    123 dep, depend 
    124     Build dependencies rule from the source files.  
    125 clean 
    126     Clean the object files for current target, but keep the output library/binary files intact.  
    127 distclean, realclean 
    128     Remove all generated files (object, libraries, binaries, and dependency files) for current target.  
     124||all||The default (or first) target to build the libraries/binaries.||  
     125||dep, depend||Build dependencies rule from the source files.||  
     126||clean||Clean the object files for current target, but keep the output library/binary files intact.||  
     127||distclean, realclean||Remove all generated files (object, libraries, binaries, and dependency files) for current target.||  
    129128 
    130129