summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-07-12 11:49:25 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-07-12 11:49:25 +0000
commit18e2dc69f97d9fed5217d48822a021431c8fb420 (patch)
treef57afaeeeca2d247c12d30071b339721b5581dc1
parent069ed79e8230c9e143d14cbbde4d4636caf96bd6 (diff)
downloadATCD-18e2dc69f97d9fed5217d48822a021431c8fb420.tar.gz
ChangeLogTag: Fri Jul 12 13:46:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog11
-rw-r--r--TAO/examples/AMH/Makefile.bor9
-rw-r--r--TAO/examples/AMH/Sink_Server/Makefile.bor7
-rw-r--r--TAO/examples/AMH/Sink_Server/client.bor40
-rw-r--r--TAO/examples/AMH/Sink_Server/mt_server.bor43
-rw-r--r--TAO/examples/AMH/Sink_Server/st_server.bor43
-rw-r--r--TAO/examples/Makefile.bor1
7 files changed, 154 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 6189b09be87..d8febce2005 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,14 @@
+Fri Jul 12 13:52:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * examples/Makefile.bor:
+ Added AMH directory
+
+ * examples/AMH/Makefile.bor:
+ New BCB makefile to build subdirectory
+
+ * examples/AMH/Sink_Server/*.bor:
+ Added BCB makefiles for this example
+
Fri Jul 12 13:39:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Makefile.bor:
diff --git a/TAO/examples/AMH/Makefile.bor b/TAO/examples/AMH/Makefile.bor
new file mode 100644
index 00000000000..fababca6836
--- /dev/null
+++ b/TAO/examples/AMH/Makefile.bor
@@ -0,0 +1,9 @@
+
+#
+# Makefile for building the AMH examples
+#
+
+DIRS = \
+ Sink_Server
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/AMH/Sink_Server/Makefile.bor b/TAO/examples/AMH/Sink_Server/Makefile.bor
new file mode 100644
index 00000000000..f1e3f7a83fd
--- /dev/null
+++ b/TAO/examples/AMH/Sink_Server/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the AMH Sink_Server test executables
+#
+
+MAKEFILES = st_server.bor mt_server.bor client.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/AMH/Sink_Server/client.bor b/TAO/examples/AMH/Sink_Server/client.bor
new file mode 100644
index 00000000000..dd135a763d3
--- /dev/null
+++ b/TAO/examples/AMH/Sink_Server/client.bor
@@ -0,0 +1,40 @@
+#
+# Makefile for building the AMH Sink_Server client
+#
+
+NAME = client
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -GH -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\testS.obj \
+ $(OBJDIR)\client.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS) \
+ $(TAO_STRATEGIES_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB) \
+ $(TAO_STRATEGIES_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\test.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/AMH/Sink_Server/mt_server.bor b/TAO/examples/AMH/Sink_Server/mt_server.bor
new file mode 100644
index 00000000000..ff62ed08ad1
--- /dev/null
+++ b/TAO/examples/AMH/Sink_Server/mt_server.bor
@@ -0,0 +1,43 @@
+#
+# Makefile for building the AMH Sink_Server mt_server
+#
+
+NAME = mt_server
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -GH -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\testS.obj \
+ $(OBJDIR)\mt_server.obj \
+ $(OBJDIR)\Base_Server.obj \
+ $(OBJDIR)\AMH_Servant.obj \
+ $(OBJDIR)\Timer_Handler.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS) \
+ $(TAO_STRATEGIES_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB) \
+ $(TAO_STRATEGIES_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\test.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/AMH/Sink_Server/st_server.bor b/TAO/examples/AMH/Sink_Server/st_server.bor
new file mode 100644
index 00000000000..933c2daaf40
--- /dev/null
+++ b/TAO/examples/AMH/Sink_Server/st_server.bor
@@ -0,0 +1,43 @@
+#
+# Makefile for building the AMH Sink_Server st_server
+#
+
+NAME = st_server
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -GH -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\testS.obj \
+ $(OBJDIR)\st_server.obj \
+ $(OBJDIR)\Base_Server.obj \
+ $(OBJDIR)\AMH_Servant.obj \
+ $(OBJDIR)\Timer_Handler.obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(TAO_CFLAGS) \
+ $(TAO_PORTABLESERVER_CFLAGS) \
+ $(TAO_STRATEGIES_CFLAGS)
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(TAO_LIB) \
+ $(TAO_PORTABLESERVER_LIB) \
+ $(TAO_STRATEGIES_LIB)
+
+IDLFILES = \
+ $(IDLDIR)\test.idl
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
+ $(TAO_IDL) $**
diff --git a/TAO/examples/Makefile.bor b/TAO/examples/Makefile.bor
index b1d66b35ff0..0ad02ad583e 100644
--- a/TAO/examples/Makefile.bor
+++ b/TAO/examples/Makefile.bor
@@ -4,6 +4,7 @@
#
DIRS = \
+ AMH \
Buffered_AMI \
Buffered_Oneways \
Callback_Quoter Simple \