summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-02 16:39:15 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-02 16:39:15 +0000
commit5475629a2faebc9b035519470cb720aade86f379 (patch)
tree0d0f39a7ac0b5de4b685cb2bb1547b460f748807
parent009c93d80e275328ed31b79558088d3a9491ab8c (diff)
downloadATCD-5475629a2faebc9b035519470cb720aade86f379.tar.gz
ChangeLogTag: Tue Apr 2 11:06:06 2003 Pradeep Gore <pradeep@oomworks.com>
-rw-r--r--TAO/ChangeLog2
-rw-r--r--TAO/orbsvcs/orbsvcs/Makefile18
2 files changed, 14 insertions, 6 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 2e0f7f164c7..90dc3329b78 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -4,6 +4,8 @@ Tue Apr 2 11:06:06 2003 Pradeep Gore <pradeep@oomworks.com>
* orbsvcs/tests/Notify/Test_Filter:
Moved the test library for RT Noification features and the test
filter into seperate directories from orbsvcs/tests/Notify/lib
+ * orbsvcs/orbsvcs/Makefile:
+ Added RT_Notify as a build target.
Thu Mar 27 01:04:43 2003 Pradeep Gore <pradeep@.oomworks.com>
diff --git a/TAO/orbsvcs/orbsvcs/Makefile b/TAO/orbsvcs/orbsvcs/Makefile
index 5593637121d..2e0b805f2d3 100644
--- a/TAO/orbsvcs/orbsvcs/Makefile
+++ b/TAO/orbsvcs/orbsvcs/Makefile
@@ -71,7 +71,7 @@ ifndef TAO_ORBSVCS
# The PortableGroup library requires several methods in the POA,
# which are disabled by Minimum CORBA. Further it also needs AMI
- # support
+ # support
ifeq ($(ami),1)
TAO_ORBSVCS += PortableGroup
ifeq ($(interceptors),1)
@@ -92,7 +92,11 @@ ifndef TAO_ORBSVCS
endif #corba_messaging
endif # ssl
- TAO_ORBSVCS += Notify
+ TAO_ORBSVCS += Notify
+
+ ifeq ($(rt_corba),1)
+ TAO_ORBSVCS += RT_Notify
+ endif #rt_corba
endif # TAO_ORBSVCS
@@ -227,7 +231,9 @@ endif
ifneq (,$(findstring IFRService, $(TAO_ORBSVCS)))
MKLIST += Makefile.IFRService
endif
-
+ifneq (,$(findstring RT_Notify, $(TAO_ORBSVCS)))
+ MKLIST += Makefile.ETCL Makefile.CosNotification Makefile.RT_Notification
+endif
#----------------------------------------------------------------------------
# Local rules
#----------------------------------------------------------------------------
@@ -237,7 +243,7 @@ endif
## Recursively invoked makes from this file will still be run in parallel.
.NOTPARALLEL:
-all: ORBSVCS_COMPONENTS
+all: ORBSVCS_COMPONENTS
realclean: ORBSVCS_COMPONENTS_realclean
@@ -247,12 +253,12 @@ realclean: ORBSVCS_COMPONENTS_realclean
@echo $(MAKE) -f $< $(MKFILE_TARGET)
@$(MAKE) -f $< $(MKFILE_TARGET)
-# This rule invokes make again with the list of .mkfile targets as a
+# This rule invokes make again with the list of .mkfile targets as a
# parameter. For example, if the all target is being made, make is invoked
# as follows:
#
# make -f Makefile MKFILE_TARGET=all Makefile.Svc_Utils.mkfile \
-# Makefile.CosNaming.mkfile .....
+# Makefile.CosNaming.mkfile .....
all debug profile install deinstall clean clobber depend rcs_info idl_stubs realclean:
ifneq ($(MKLIST),)
@echo $(MAKE) -f $(MAKEFILE) MKFILE_TARGET=$@ $(addsuffix .mkfile, $(MKLIST))