summaryrefslogtreecommitdiff
path: root/TAO/CIAO/rules.ciao.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/rules.ciao.GNU')
-rw-r--r--TAO/CIAO/rules.ciao.GNU48
1 files changed, 0 insertions, 48 deletions
diff --git a/TAO/CIAO/rules.ciao.GNU b/TAO/CIAO/rules.ciao.GNU
deleted file mode 100644
index 16a622a54f7..00000000000
--- a/TAO/CIAO/rules.ciao.GNU
+++ /dev/null
@@ -1,48 +0,0 @@
-# -*- Makefile -*-
-
-#----------------------------------------------------------------------------
-#
-# $Id$
-#
-# Common Makefile rules for all of CIAO
-#
-#----------------------------------------------------------------------------
-
-ifndef TAO_ROOT
- TAO_ROOT = $(ACE_ROOT)/TAO
-endif
-
-ifndef CIAO_ROOT
- CIAO_ROOT = $(TAO_ROOT)/CIAO
-endif
-
-# Turn on symbol versioning. The scheme that we follow is to allow
-# applications dependent on libraries, with same version numbers (major,
-# minor and beta) to run, but applications with dependencies on libraries
-# with different minor or major or beta versions to fail.
-#
-ifeq (cmd,$(findstring cmd,$(SHELL)))
-CIAO_MAJOR_VERSION := $(shell awk "/CIAO_MAJOR_VERSION/ { print $$3}" ${CIAO_ROOT}/ciao/Version.h)
-CIAO_MINOR_VERSION := $(shell awk "/CIAO_MINOR_VERSION/ { print $$3}" ${CIAO_ROOT}/ciao/Version.h)
-CIAO_BETA_VERSION := $(shell awk "/CIAO_BETA_VERSION/ { print $$3}" ${CIAO_ROOT}/ciao/Version.h)
-else
-CIAO_MAJOR_VERSION := $(shell awk '/CIAO_MAJOR_VERSION/ { print $$3}' ${CIAO_ROOT}/ciao/Version.h)
-CIAO_MINOR_VERSION := $(shell awk '/CIAO_MINOR_VERSION/ { print $$3}' ${CIAO_ROOT}/ciao/Version.h)
-CIAO_BETA_VERSION := $(shell awk '/CIAO_BETA_VERSION/ { print $$3}' ${CIAO_ROOT}/ciao/Version.h)
-endif
-
-# Version number of the libraries
-#
-ifeq ($(versioned_so),1)
- # Only set SOVERSION for CIAO if versioning is turned on and SOVERION is
- # blank, which gives users to ability to override it.
- ifeq ($(SOVERSION),)
- SOVERSION = .$(CIAO_MAJOR_VERSION).$(CIAO_MINOR_VERSION).$(CIAO_BETA_VERSION)
- endif # SOVERSION
-
- # Name that will be written into the dynamic library
- #
- ifneq ($(SONAME),)
- SONAME = $(SHLIB).$(CIAO_MAJOR_VERSION).$(CIAO_MINOR_VERSION).$(CIAO_BETA_VERSION)
- endif # SONAME
-endif # versioned_so