summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-07-12 11:40:03 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-07-12 11:40:03 +0000
commit069ed79e8230c9e143d14cbbde4d4636caf96bd6 (patch)
tree9656c6d636967baf9bc6e01c54a2abb2f4e3d8bd
parentbc592c902f9352b07dccbfd73371a8e6e4f3d513 (diff)
downloadATCD-069ed79e8230c9e143d14cbbde4d4636caf96bd6.tar.gz
ChangeLogTag: Fri Jul 12 13:37:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tests/AMH_Exceptions/Makefile.bor7
-rw-r--r--TAO/tests/AMH_Exceptions/client.bor40
-rw-r--r--TAO/tests/AMH_Exceptions/server.bor40
-rw-r--r--TAO/tests/Makefile.bor1
5 files changed, 96 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index bba4bccedf5..6189b09be87 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Fri Jul 12 13:39:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Makefile.bor:
+ Added AMH_Exceptions directory
+
+ * tests/AMH_Exceptions/*.bor:
+ Created BCB makefiles for this test
+
Thu Jul 11 21:10:37 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* Makefile.bor: Added a new BUILD target called "nightlybuild" to
diff --git a/TAO/tests/AMH_Exceptions/Makefile.bor b/TAO/tests/AMH_Exceptions/Makefile.bor
new file mode 100644
index 00000000000..5249340cf08
--- /dev/null
+++ b/TAO/tests/AMH_Exceptions/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the AMH_Exceptions test executables
+#
+
+MAKEFILES = server.bor client.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/tests/AMH_Exceptions/client.bor b/TAO/tests/AMH_Exceptions/client.bor
new file mode 100644
index 00000000000..72c66b3d579
--- /dev/null
+++ b/TAO/tests/AMH_Exceptions/client.bor
@@ -0,0 +1,40 @@
+#
+# Makefile for building the AMH_Exceptions client
+#
+
+NAME = client
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Gv -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/tests/AMH_Exceptions/server.bor b/TAO/tests/AMH_Exceptions/server.bor
new file mode 100644
index 00000000000..39f4c521f2c
--- /dev/null
+++ b/TAO/tests/AMH_Exceptions/server.bor
@@ -0,0 +1,40 @@
+#
+# Makefile for building the AMH_Exceptions server
+#
+
+NAME = server
+
+TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Gv -GH -Ge 1
+
+OBJFILES = \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\testS.obj \
+ $(OBJDIR)\server.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/tests/Makefile.bor b/TAO/tests/Makefile.bor
index 46b4750f690..df59944f5ce 100644
--- a/TAO/tests/Makefile.bor
+++ b/TAO/tests/Makefile.bor
@@ -3,6 +3,7 @@
#
DIRS = \
+ AMH_Exceptions \
AMI \
AMI_Buffering \
AMI_Timeouts \