Changes between Version 7 and Version 8 of Getting-Started/Autoconf
- Timestamp:
- Apr 29, 2009 9:50:00 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/Autoconf
v7 v8 56 56 With 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: 57 57 58 58 {{{ 59 59 $ cd pjproject 60 60 $ ./configure --help 61 61 ... 62 }}} 63 62 64 Optional Features: 63 65 --disable-floating-point Disable floating point where possible … … 107 109 Once the configure script completes successfully, start the build process by invoking these commands: 108 110 109 111 {{{ 110 112 $ cd pjproject 111 113 $ make dep 112 114 $ make 115 }}} 113 116 114 117 Note: … … 119 122 Description of all make targets supported by the Makefile's: 120 123 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.|| 129 128 130 129