summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-22 08:24:56 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-22 08:24:56 +0000
commit1fffe0b4f0022e3104ffa688254ca4d7f2acb0c8 (patch)
treeab1ead381ced016ce5b8ae7a5395260c285c7e00
parent4ae2587004665d55eead102ee4c3cae60b5a4419 (diff)
downloadATCD-1fffe0b4f0022e3104ffa688254ca4d7f2acb0c8.tar.gz
ChangeLogTag:Fri Dec 22 07:44:00 2000 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/examples/Load_Balancing_persistent/Load_Balancing.bor29
-rw-r--r--TAO/examples/Load_Balancing_persistent/Makefile.bor7
-rw-r--r--TAO/examples/Load_Balancing_persistent/client.bor32
-rw-r--r--TAO/examples/Load_Balancing_persistent/server.bor34
-rw-r--r--TAO/examples/Makefile.bor1
5 files changed, 103 insertions, 0 deletions
diff --git a/TAO/examples/Load_Balancing_persistent/Load_Balancing.bor b/TAO/examples/Load_Balancing_persistent/Load_Balancing.bor
new file mode 100644
index 00000000000..f0a630c5541
--- /dev/null
+++ b/TAO/examples/Load_Balancing_persistent/Load_Balancing.bor
@@ -0,0 +1,29 @@
+
+#
+# Makefile for building the Load_Balancing example
+#
+
+NAME = load_balancer
+
+OBJFILES = \
+ $(OBJDIR)\Load_BalancerC.obj \
+ $(OBJDIR)\Load_BalancerS.obj \
+ $(OBJDIR)\Load_Balancer_i.obj \
+ $(OBJDIR)\Load_Balancing_Service.obj
+
+IDLFILES = \
+ $(IDLDIR)\Load_Balancer.idl
+
+CPPDIR = .;..
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\Load_BalancerC.cpp $(IDLDIR)\Load_BalancerS.cpp: $(IDLDIR)\Load_Balancer.idl
+ $(TAO_IDL) $**
+
diff --git a/TAO/examples/Load_Balancing_persistent/Makefile.bor b/TAO/examples/Load_Balancing_persistent/Makefile.bor
new file mode 100644
index 00000000000..eb788c636fe
--- /dev/null
+++ b/TAO/examples/Load_Balancing_persistent/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the Load_Balancing example
+#
+
+MAKEFILES = Load_Balancing.bor server.bor client.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/Load_Balancing_persistent/client.bor b/TAO/examples/Load_Balancing_persistent/client.bor
new file mode 100644
index 00000000000..bf387817bb6
--- /dev/null
+++ b/TAO/examples/Load_Balancing_persistent/client.bor
@@ -0,0 +1,32 @@
+
+#
+# Makefile for building the Load_Balancing example
+#
+
+NAME = client
+
+OBJFILES = \
+ $(OBJDIR)\IdentityC.obj \
+ $(OBJDIR)\Load_BalancerC.obj \
+ $(OBJDIR)\Identity_Client.obj
+
+IDLFILES = \
+ $(IDLDIR)\Identity.idl \
+ $(IDLDIR)\Load_Balancer.idl
+
+CPPDIR = .;..
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\IdentityC.cpp $(IDLDIR)\IdentityS.cpp: $(IDLDIR)\Identity.idl
+ $(TAO_IDL) $**
+
+$(IDLDIR)\Load_BalancerC.cpp $(IDLDIR)\Load_BalancerS.cpp: $(IDLDIR)\Load_Balancer.idl
+ $(TAO_IDL) $**
+
diff --git a/TAO/examples/Load_Balancing_persistent/server.bor b/TAO/examples/Load_Balancing_persistent/server.bor
new file mode 100644
index 00000000000..ecd96ef51cc
--- /dev/null
+++ b/TAO/examples/Load_Balancing_persistent/server.bor
@@ -0,0 +1,34 @@
+
+#
+# Makefile for building the Load_Balancing example
+#
+
+NAME = server
+
+OBJFILES = \
+ $(OBJDIR)\IdentityC.obj \
+ $(OBJDIR)\Load_BalancerC.obj \
+ $(OBJDIR)\IdentityS.obj \
+ $(OBJDIR)\Identity_Server.obj \
+ $(OBJDIR)\Identity_i.obj
+
+IDLFILES = \
+ $(IDLDIR)\Load_Balancer.idl \
+ $(IDLDIR)\Identity.idl
+
+CPPDIR = .;..
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\Load_BalancerC.cpp $(IDLDIR)\Load_BalancerS.cpp: $(IDLDIR)\Load_Balancer.idl
+ $(TAO_IDL) $**
+
+$(IDLDIR)\IdentityC.cpp $(IDLDIR)\IdentityS.cpp: $(IDLDIR)\Identity.idl
+ $(TAO_IDL) $**
+
diff --git a/TAO/examples/Makefile.bor b/TAO/examples/Makefile.bor
index 79a663b6902..7d2ff83850e 100644
--- a/TAO/examples/Makefile.bor
+++ b/TAO/examples/Makefile.bor
@@ -7,6 +7,7 @@ DIRS = Buffered_Oneways \
Callback_Quoter Simple \
Event_Comm \
Load_Balancing \
+ Load_Balancing_persistent \
POA \
Simple