diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-01 20:11:58 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-01 20:11:58 +0000 |
commit | 83c0475a4c8559b4d31dae935cb6d74dd8a84f4b (patch) | |
tree | 1214cf3c1fd736b904697460210b0a6e0b0fb11a | |
parent | 290fb72f4de19a1527c5a53809d739bb9e755ad5 (diff) | |
download | ATCD-83c0475a4c8559b4d31dae935cb6d74dd8a84f4b.tar.gz |
added documentation for ACE Makefile BUILD, show_statics, and show_uninit targets
-rw-r--r-- | ACE-INSTALL.html | 12 | ||||
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 11 |
2 files changed, 23 insertions, 0 deletions
diff --git a/ACE-INSTALL.html b/ACE-INSTALL.html index ffb1c88b372..157c4ed8a37 100644 --- a/ACE-INSTALL.html +++ b/ACE-INSTALL.html @@ -861,6 +861,18 @@ static_libs Build shared libraries. Ignored if shared_libs_only is set. shared_libs_only Only build shared libraries. Ignored if no SHLIBs are specified by the Makefile, as in performance-tests/Misc. static_libs_only Only build static libraries. + +Usually, users do not need to be concerned with make targets. +Just enter ``make'' on the command line to build. A few notable +targets are listed below. + +Target Description +------ ----------- +show_statics Lists all static objects in object files built for + current directory. Only supported for g++. +show_uninit Lists all uninitialized in object files built for + current directory. Only supported for g++. + </PRE> <HR><P> diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index 98982164062..fb804ab4be6 100644 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -32,6 +32,17 @@ # specified by the Makefile, as in performance-tests/Misc. # static_libs_only Only build static libraries. # +# Usually, users do not need to be concerned with make targets. +# Just enter "make" on the command line to build. A few notable +# targets are listed below. +# +# Target Description +# ------ ----------- +# show_statics Lists all static objects in object files built for +# current directory. Only supported for g++. +# show_uninit Lists all uninitialized in object files built for +# current directory. Only supported for g++. +# # The following describes the ACE wrapper macros: # # Variable Description |