summaryrefslogtreecommitdiff
path: root/TAO/examples/POA
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-27 06:59:46 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-27 06:59:46 +0000
commite1b6c84fc1d6be3f5b844c8a52625f8cb705e755 (patch)
tree54a04a0614b95331398ffbbaa14cedf2eb1580e0 /TAO/examples/POA
parent5f91d80537fbf3f538bacae417cf0e9f4f98c259 (diff)
downloadATCD-e1b6c84fc1d6be3f5b844c8a52625f8cb705e755.tar.gz
ChangeLogTag: Tue Mar 12 07:28:45 2001 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/POA')
-rw-r--r--TAO/examples/POA/DSI/Makefile.bor7
-rw-r--r--TAO/examples/POA/DSI/client.bor38
-rw-r--r--TAO/examples/POA/DSI/server.bor41
-rw-r--r--TAO/examples/POA/Forwarding/Makefile.bor7
-rw-r--r--TAO/examples/POA/Forwarding/client.bor38
-rw-r--r--TAO/examples/POA/Forwarding/server.bor40
-rw-r--r--TAO/examples/POA/Makefile.bor10
-rw-r--r--TAO/examples/POA/TIE/Makefile.bor7
-rw-r--r--TAO/examples/POA/TIE/client.bor38
-rw-r--r--TAO/examples/POA/TIE/server.bor39
10 files changed, 262 insertions, 3 deletions
diff --git a/TAO/examples/POA/DSI/Makefile.bor b/TAO/examples/POA/DSI/Makefile.bor
new file mode 100644
index 00000000000..a5b7c173123
--- /dev/null
+++ b/TAO/examples/POA/DSI/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the POA DSI examples
+#
+
+MAKEFILES = server.bor client.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/POA/DSI/client.bor b/TAO/examples/POA/DSI/client.bor
new file mode 100644
index 00000000000..8b3dbf9a1bb
--- /dev/null
+++ b/TAO/examples/POA/DSI/client.bor
@@ -0,0 +1,38 @@
+#
+# Makefile for building the POA DSI executable
+#
+
+NAME = client
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\DatabaseC.obj \
+ $(OBJDIR)\DatabaseS.obj \
+ $(OBJDIR)\client.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\Database.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\DatabaseS.cpp $(IDLDIR)\DatabaseC.cpp: $(IDLDIR)\Database.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/POA/DSI/server.bor b/TAO/examples/POA/DSI/server.bor
new file mode 100644
index 00000000000..9d921c3deaf
--- /dev/null
+++ b/TAO/examples/POA/DSI/server.bor
@@ -0,0 +1,41 @@
+#
+# Makefile for building the POA DSI executable
+#
+
+NAME = server
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\DatabaseC.obj \
+ $(OBJDIR)\DatabaseS.obj \
+ $(OBJDIR)\Database_i.obj \
+ $(OBJDIR)\server.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS) \
+ $(TAO_DYNAMICINTERFACE_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB) \
+ $(TAO_DYNAMICINTERFACE_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\Database.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\DatabaseS.cpp $(IDLDIR)\DatabaseC.cpp: $(IDLDIR)\Database.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/POA/Forwarding/Makefile.bor b/TAO/examples/POA/Forwarding/Makefile.bor
new file mode 100644
index 00000000000..b00d8d0de3b
--- /dev/null
+++ b/TAO/examples/POA/Forwarding/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the POA Forwarding examples
+#
+
+MAKEFILES = server.bor client.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/POA/Forwarding/client.bor b/TAO/examples/POA/Forwarding/client.bor
new file mode 100644
index 00000000000..bc27fbe9eb6
--- /dev/null
+++ b/TAO/examples/POA/Forwarding/client.bor
@@ -0,0 +1,38 @@
+#
+# Makefile for building the POA Forwarding executable
+#
+
+NAME = client
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\FooC.obj \
+ $(OBJDIR)\FooS.obj \
+ $(OBJDIR)\client.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\Foo.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\FooS.cpp $(IDLDIR)\FooC.cpp: $(IDLDIR)\Foo.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/POA/Forwarding/server.bor b/TAO/examples/POA/Forwarding/server.bor
new file mode 100644
index 00000000000..08eef156b5a
--- /dev/null
+++ b/TAO/examples/POA/Forwarding/server.bor
@@ -0,0 +1,40 @@
+#
+# Makefile for building the POA Forwarding executable
+#
+
+NAME = server
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\FooC.obj \
+ $(OBJDIR)\FooS.obj \
+ $(OBJDIR)\MyFooServant.obj \
+ $(OBJDIR)\Servant_Activator.obj \
+ $(OBJDIR)\server.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\Foo.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\FooS.cpp $(IDLDIR)\FooC.cpp: $(IDLDIR)\Foo.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/POA/Makefile.bor b/TAO/examples/POA/Makefile.bor
index a7700068193..b13e61c0b5d 100644
--- a/TAO/examples/POA/Makefile.bor
+++ b/TAO/examples/POA/Makefile.bor
@@ -2,8 +2,12 @@
# Makefile for building the TAO POA examples
#
-DIRS = FindPOA \
- NewPOA \
- RootPOA
+DIRS = \
+ DSI \
+ FindPOA \
+ Forwarding \
+ NewPOA \
+ RootPOA \
+ TIE
!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/POA/TIE/Makefile.bor b/TAO/examples/POA/TIE/Makefile.bor
new file mode 100644
index 00000000000..a9721c5070a
--- /dev/null
+++ b/TAO/examples/POA/TIE/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the POA TIE examples
+#
+
+MAKEFILES = server.bor client.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/POA/TIE/client.bor b/TAO/examples/POA/TIE/client.bor
new file mode 100644
index 00000000000..19e60ed8c03
--- /dev/null
+++ b/TAO/examples/POA/TIE/client.bor
@@ -0,0 +1,38 @@
+#
+# Makefile for building the POA TIE executable
+#
+
+NAME = client
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\FooC.obj \
+ $(OBJDIR)\FooS.obj \
+ $(OBJDIR)\client.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\Foo.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\FooS.cpp $(IDLDIR)\FooC.cpp: $(IDLDIR)\Foo.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/POA/TIE/server.bor b/TAO/examples/POA/TIE/server.bor
new file mode 100644
index 00000000000..80533e29244
--- /dev/null
+++ b/TAO/examples/POA/TIE/server.bor
@@ -0,0 +1,39 @@
+#
+# Makefile for building the POA TIE executable
+#
+
+NAME = server
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\FooC.obj \
+ $(OBJDIR)\FooS.obj \
+ $(OBJDIR)\Foo_i.obj \
+ $(OBJDIR)\server.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\Foo.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\FooS.cpp $(IDLDIR)\FooC.cpp: $(IDLDIR)\Foo.idl
+ $(TAO_IDL) $**