summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-11-20 02:16:50 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-11-20 02:16:50 +0000
commit197cac0a15bc4db0a55f5ffebd6dc2edeab9414c (patch)
treed193e5fcb3bf2c64e2014996efae8118683bc199 /TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile
parent8465f48412e04895e1a7a8593747da829f844676 (diff)
downloadATCD-197cac0a15bc4db0a55f5ffebd6dc2edeab9414c.tar.gz
ChangeLogTag:Wed Nov 19 20:09:17 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile b/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile
index 2887c39ea35..7548e0e9590 100644
--- a/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile
+++ b/TAO/orbsvcs/tests/AVStreams/Simple_Two_Stage/Makefile
@@ -9,7 +9,7 @@
# Local macros
#----------------------------------------------------------------------------
-LDLIBS = -lTAO_AV -lTAO_CosProperty -lTAO_CosNaming -lTAO_Svc_Utils -lTAO_IORTable $(TAO_SRVR_LIBS)
+LDLIBS = -lTAO_AV -lTAO_CosProperty -lTAO_CosNaming -lTAO_Svc_Utils -lTAO_Messaging -lTAO_IORTable $(TAO_SRVR_LIBS)
RECEIVER_OBJS = receiver.o
SENDER_OBJS = sender.o
@@ -29,9 +29,6 @@ BIN2 = receiver sender
#### If the TAO orbsvcs library wasn't built with sufficient components,
#### don't try to build here.
TAO_ORBSVCS := $(shell $(ACE_ROOT)/bin/ace_components --orbsvcs)
-ifeq (AV,$(findstring AV,$(TAO_ORBSVCS)))
- BIN = $(BIN2)
-endif # AV
#----------------------------------------------------------------------------
# Include macros and targets
@@ -40,6 +37,11 @@ endif # AV
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(TAO_ROOT)/rules.tao.GNU
+ifeq ($(corba_messaging),1)
+ ifeq (AV,$(findstring AV,$(TAO_ORBSVCS)))
+ BIN = $(BIN2)
+ endif # AV
+endif # corba_messaging
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU