summaryrefslogtreecommitdiff
path: root/CIAO/rules.ciao.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/rules.ciao.GNU')
-rw-r--r--CIAO/rules.ciao.GNU57
1 files changed, 0 insertions, 57 deletions
diff --git a/CIAO/rules.ciao.GNU b/CIAO/rules.ciao.GNU
deleted file mode 100644
index 8f41356d13c..00000000000
--- a/CIAO/rules.ciao.GNU
+++ /dev/null
@@ -1,57 +0,0 @@
-# -*- Makefile -*-
-
-#----------------------------------------------------------------------------
-#
-#
-#
-# Common Makefile rules for all of CIAO
-#
-#----------------------------------------------------------------------------
-
-TAO_ROOT ?= $(ACE_ROOT)/TAO
-CIAO_ROOT ?= $(TAO_ROOT)/CIAO
-
-TAO_ROOT := $(subst \,/,$(TAO_ROOT))
-CIAO_ROOT := $(subst \,/,$(CIAO_ROOT))
-
-ifndef TAO_IDL3_TO_IDL2
- TAO_IDL3_TO_IDL2 = $(CIAO_ROOT)/tools/IDL3_to_IDL2/tao_idl3_to_idl2
- TAO_IDL3_TO_IDL2_DEP = $(TAO_IDL3_TO_IDL2)$(EXEEXT)
-else
-ifndef TAO_IDL3_TO_IDL2_DEP
- TAO_IDL3_TO_IDL2_DEP = $(TAO_IDL3_TO_IDL2)
-endif
-endif
-
-ifndef TAO_IDL3_TO_XMI
- TAO_IDL3_TO_XMI = $(CIAO_ROOT)/tools/IDL3_to_XMI/tao_idl3_to_xmi
- TAO_IDL3_TO_XMI_DEP = $(TAO_IDL3_TO_XMI)$(EXEEXT)
-else
-ifndef TAO_IDL3_TO_XMI_DEP
- TAO_IDL3_TO_XMI_DEP = $(TAO_IDL3_TO_XMI)
-endif
-endif
-
-ifeq (,$(findstring -L$(CIAO_ROOT)/ciao,$(LDFLAGS)))
- LDFLAGS += -L$(CIAO_ROOT)/ciao
-endif
-ifeq (,$(findstring -I$(CIAO_ROOT),$(INCLDIRS)))
- INCLDIRS += -I$(CIAO_ROOT)
-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
-
-GNUACE_PROJECT_VERSION ?= $(CIAO_MAJOR_VERSION).$(CIAO_MINOR_VERSION).$(CIAO_BETA_VERSION)