summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-08-17 12:42:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-08-17 12:42:51 +0000
commita1131df652069352be30f615150442397d12b944 (patch)
treef292e19d46ca715e8003777dcf340cc96301981a
parent4ffc61ed12a768b7e873fb5f7026232113251ac3 (diff)
downloadATCD-a1131df652069352be30f615150442397d12b944.tar.gz
ChangeLogTag:Thu Aug 17 05:48:51 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--TAO/tests/DSI_Gateway/Makefile.bor7
-rw-r--r--TAO/tests/DSI_Gateway/client.bor22
-rw-r--r--TAO/tests/DSI_Gateway/gateway.bor25
-rw-r--r--TAO/tests/DSI_Gateway/server.bor24
-rw-r--r--TAO/tests/Multiple_Inheritance/Makefile.bor10
-rw-r--r--TAO/tests/Multiple_Inheritance/client.bor25
-rw-r--r--TAO/tests/Multiple_Inheritance/server.bor25
7 files changed, 138 insertions, 0 deletions
diff --git a/TAO/tests/DSI_Gateway/Makefile.bor b/TAO/tests/DSI_Gateway/Makefile.bor
new file mode 100644
index 00000000000..daee9e041fa
--- /dev/null
+++ b/TAO/tests/DSI_Gateway/Makefile.bor
@@ -0,0 +1,7 @@
+#
+# Makefile for building the DSI_Gateway test executables
+#
+
+MAKEFILES = server.bor client.bor gateway.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/tests/DSI_Gateway/client.bor b/TAO/tests/DSI_Gateway/client.bor
new file mode 100644
index 00000000000..fa6883fafc4
--- /dev/null
+++ b/TAO/tests/DSI_Gateway/client.bor
@@ -0,0 +1,22 @@
+#
+# Makefile for building the DSI_Gateway client
+#
+
+NAME = client
+
+OBJFILES = \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\client.obj
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
+ $(TAO_IDL) $**
diff --git a/TAO/tests/DSI_Gateway/gateway.bor b/TAO/tests/DSI_Gateway/gateway.bor
new file mode 100644
index 00000000000..e079f8d7ee7
--- /dev/null
+++ b/TAO/tests/DSI_Gateway/gateway.bor
@@ -0,0 +1,25 @@
+#
+# Makefile for building the DSI_Gateway gateway
+#
+
+NAME = gateway
+
+OBJFILES = \
+ $(OBJDIR)\testS.obj \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\test_i.obj \
+ $(OBJDIR)\test_dsi.obj \
+ $(OBJDIR)\gateway.obj
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
+ $(TAO_IDL) $**
diff --git a/TAO/tests/DSI_Gateway/server.bor b/TAO/tests/DSI_Gateway/server.bor
new file mode 100644
index 00000000000..4c21c637818
--- /dev/null
+++ b/TAO/tests/DSI_Gateway/server.bor
@@ -0,0 +1,24 @@
+#
+# Makefile for building the DSI_Gateway server
+#
+
+NAME = server
+
+OBJFILES = \
+ $(OBJDIR)\testS.obj \
+ $(OBJDIR)\testC.obj \
+ $(OBJDIR)\test_i.obj \
+ $(OBJDIR)\server.obj
+
+CPPDIR = .
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
+ $(TAO_IDL) $**
diff --git a/TAO/tests/Multiple_Inheritance/Makefile.bor b/TAO/tests/Multiple_Inheritance/Makefile.bor
new file mode 100644
index 00000000000..f75f39c57e4
--- /dev/null
+++ b/TAO/tests/Multiple_Inheritance/Makefile.bor
@@ -0,0 +1,10 @@
+#
+# Makefile for building the Multiple_Inheritance test
+#
+
+MAKEFILES = \
+ client.bor \
+ server.bor
+
+!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
+
diff --git a/TAO/tests/Multiple_Inheritance/client.bor b/TAO/tests/Multiple_Inheritance/client.bor
new file mode 100644
index 00000000000..ca3522b36ea
--- /dev/null
+++ b/TAO/tests/Multiple_Inheritance/client.bor
@@ -0,0 +1,25 @@
+
+#
+# Makefile for building the Multiple_Inheritance example
+#
+
+NAME = client
+
+OBJFILES = \
+ $(OBJDIR)\Multiple_InheritanceC.obj \
+ $(OBJDIR)\Multiple_InheritanceS.obj \
+ $(OBJDIR)\client.obj
+
+CPPDIR = .;..
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\Multiple_InheritanceC.cpp $(IDLDIR)\Multiple_InheritanceS.cpp: $(IDLDIR)\Multiple_Inheritance.idl
+ $(TAO_IDL) $**
+
diff --git a/TAO/tests/Multiple_Inheritance/server.bor b/TAO/tests/Multiple_Inheritance/server.bor
new file mode 100644
index 00000000000..c6012b5b5ec
--- /dev/null
+++ b/TAO/tests/Multiple_Inheritance/server.bor
@@ -0,0 +1,25 @@
+
+#
+# Makefile for building the Multiple_Inheritance test
+#
+
+NAME = server
+
+OBJFILES = \
+ $(OBJDIR)\Multiple_InheritanceC.obj \
+ $(OBJDIR)\Multiple_InheritanceS.obj \
+ $(OBJDIR)\server.obj
+
+CPPDIR = .;..
+
+IDLDIR = .
+
+!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
+
+#
+# IDL Build rules
+#
+
+$(IDLDIR)\Multiple_InheritanceC.cpp $(IDLDIR)\Multiple_InheritancetS.cpp: $(IDLDIR)\Multiple_Inheritance.idl
+ $(TAO_IDL) $**
+