diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-11-29 13:09:54 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-11-29 13:09:54 +0000 |
commit | 83d365c939e4fbe3800087429066e7bd760c3798 (patch) | |
tree | a16fd0589e445fd5a02bca6bbb996f2f123005df /bin | |
parent | d4459fd6697f3bd21ad8c872177b13ecd5e7ef7c (diff) | |
download | ATCD-83d365c939e4fbe3800087429066e7bd760c3798.tar.gz |
ChangeLogTag: Mon Nov 29 07:04:58 2004 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/MakeProjectCreator/templates/gnu.mpd | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/bin/MakeProjectCreator/templates/gnu.mpd b/bin/MakeProjectCreator/templates/gnu.mpd index 8541bcb82b6..ff2810a4172 100644 --- a/bin/MakeProjectCreator/templates/gnu.mpd +++ b/bin/MakeProjectCreator/templates/gnu.mpd @@ -123,10 +123,6 @@ endif OUTPUT_DIRECTORY = $(INSLIB) <%endif%> -<%if(version)%> -SOVERSION = .<%version%> -<%endif%> - include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU ## We don't need the ACELIB setting from wrapper_macros.GNU ACELIB = @@ -134,6 +130,12 @@ ACELIB = tao_dont_use_idl_make_rule = 1 include $(TAO_ROOT)/rules.tao.GNU <%endif%> +<%if(version)%> + +ifeq ($(versioned_so),1) +SOVERSION = .<%version%> +endif +<%endif%> # To build multiple targets in the same directory on AIX, it works # best to have a template directory per project. @@ -321,7 +323,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU ifneq ($(OUTPUT_DIRECTORY),) ifneq ($(OUTPUT_DIRECTORY),.) INSTALL = $(VBIN:%=$(INSBIN)/%) - CLEANUP_INSTALL += $(CLEANUP_BIN:%=$(INSBIN)/%) + CLEANUP_INSTALL += $(CLEANUP_BIN:%=$(INSBIN)/%$(VAR)$(EXEEXT)) endif endif |