diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-18 17:50:45 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-18 17:50:45 +0000 |
commit | 056d590444bd3f22a59f78632d74a2cc705749e1 (patch) | |
tree | 522422fc61e42c01dd389a8b114f08e39a002edc /TAO/tests/Leader_Followers | |
parent | c5159024f0b869f0c20eb32e5e09c6984c0aa33b (diff) | |
download | ATCD-056d590444bd3f22a59f78632d74a2cc705749e1.tar.gz |
ChangeLogTag: Sat Nov 18 09:41:28 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'TAO/tests/Leader_Followers')
-rw-r--r-- | TAO/tests/Leader_Followers/Makefile | 29 | ||||
-rw-r--r-- | TAO/tests/Leader_Followers/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Leader_Followers/server.cpp | 2 |
3 files changed, 29 insertions, 4 deletions
diff --git a/TAO/tests/Leader_Followers/Makefile b/TAO/tests/Leader_Followers/Makefile index de8cc324260..873abc5cae4 100644 --- a/TAO/tests/Leader_Followers/Makefile +++ b/TAO/tests/Leader_Followers/Makefile @@ -12,8 +12,6 @@ ifndef TAO_ROOT TAO_ROOT = $(ACE_ROOT)/TAO endif # ! TAO_ROOT -LDLIBS = -lTAO_Strategies -lTAO - IDL_FILES = test IDL_SRC = testC.cpp testS.cpp BIN = client server @@ -36,6 +34,9 @@ include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU include $(ACE_ROOT)/include/makeinclude/rules.local.GNU include $(TAO_ROOT)/taoconfig.mk +TAO_CLNT_LIBS := -lTAO_Strategies $(TAO_CLNT_LIBS) +TAO_SRVR_LIBS := -lTAO_Strategies $(TAO_SRVR_LIBS) + #---------------------------------------------------------------------------- # Local targets #---------------------------------------------------------------------------- @@ -287,6 +288,8 @@ realclean: clean $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/GIOPC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ @@ -391,7 +394,12 @@ realclean: clean $(TAO_ROOT)/tao/PortableInterceptor.i \ $(TAO_ROOT)/tao/PortableServer/ServerRequestInfo.h \ $(TAO_ROOT)/tao/PortableServer/portableserver_export.h \ - testC.i + testC.i \ + $(TAO_ROOT)/tao/Strategies/advanced_resource.h \ + $(TAO_ROOT)/tao/Strategies/strategies_export.h \ + $(TAO_ROOT)/tao/default_resource.h \ + $(TAO_ROOT)/tao/default_resource.i \ + $(TAO_ROOT)/tao/Strategies/advanced_resource.i .obj/server.o .obj/server.so .shobj/server.o .shobj/server.so: server.cpp \ $(ACE_ROOT)/ace/Get_Opt.h \ @@ -623,6 +631,8 @@ realclean: clean $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/GIOPC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ @@ -737,7 +747,12 @@ realclean: clean $(TAO_ROOT)/tao/PortableServer/Servant_Base.i \ $(TAO_ROOT)/tao/PortableServer/Collocated_Object.h \ $(TAO_ROOT)/tao/PortableServer/Collocated_Object.i \ - testS_T.h testS_T.i testS_T.cpp testS.i + testS_T.h testS_T.i testS_T.cpp testS.i \ + $(TAO_ROOT)/tao/Strategies/advanced_resource.h \ + $(TAO_ROOT)/tao/Strategies/strategies_export.h \ + $(TAO_ROOT)/tao/default_resource.h \ + $(TAO_ROOT)/tao/default_resource.i \ + $(TAO_ROOT)/tao/Strategies/advanced_resource.i .obj/test_i.o .obj/test_i.so .shobj/test_i.o .shobj/test_i.so: test_i.cpp test_i.h testS.h testC.h \ $(TAO_ROOT)/tao/corba.h \ @@ -897,6 +912,8 @@ realclean: clean $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/GIOPC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ @@ -1230,6 +1247,8 @@ realclean: clean $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/GIOPC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ @@ -1553,6 +1572,8 @@ realclean: clean $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/GIOPC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ diff --git a/TAO/tests/Leader_Followers/client.cpp b/TAO/tests/Leader_Followers/client.cpp index 5748576a25d..34894f60140 100644 --- a/TAO/tests/Leader_Followers/client.cpp +++ b/TAO/tests/Leader_Followers/client.cpp @@ -18,6 +18,8 @@ #include "ace/Task.h" #include "testC.h" +#include "tao/Strategies/advanced_resource.h" + ACE_RCSID(Leader_Followers, client, "$Id$") // Name of file contains ior. diff --git a/TAO/tests/Leader_Followers/server.cpp b/TAO/tests/Leader_Followers/server.cpp index 1ef945e676f..0bd163e7081 100644 --- a/TAO/tests/Leader_Followers/server.cpp +++ b/TAO/tests/Leader_Followers/server.cpp @@ -4,6 +4,8 @@ #include "ace/Task.h" #include "test_i.h" +#include "tao/Strategies/advanced_resource.h" + ACE_RCSID(Leader_Followers, server, "$Id$") const char *ior_output_file = "ior"; |