summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-04-08 20:22:33 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-04-08 20:22:33 +0000
commitfd086adbf9daa6f8e5d1c782955be38c471c8888 (patch)
treec39489d9c7f2abd21f24bf10957207e8d863671d /TAO/tests/DLL_ORB
parentc4bac837318fda7b89f9a5a6ae06117866c21a6b (diff)
downloadATCD-fd086adbf9daa6f8e5d1c782955be38c471c8888.tar.gz
ChangeLogTag:
Diffstat (limited to 'TAO/tests/DLL_ORB')
-rw-r--r--TAO/tests/DLL_ORB/Makefile.bor8
-rw-r--r--TAO/tests/DLL_ORB/Test_Client_Module.bor37
-rw-r--r--TAO/tests/DLL_ORB/Test_Server_Module.bor41
-rw-r--r--TAO/tests/DLL_ORB/client.bor23
-rw-r--r--TAO/tests/DLL_ORB/server.bor22
5 files changed, 0 insertions, 131 deletions
diff --git a/TAO/tests/DLL_ORB/Makefile.bor b/TAO/tests/DLL_ORB/Makefile.bor
deleted file mode 100644
index c372611943b..00000000000
--- a/TAO/tests/DLL_ORB/Makefile.bor
+++ /dev/null
@@ -1,8 +0,0 @@
-# $Id$
-#
-# Makefile for building the DLL_Orb test executables
-#
-
-MAKEFILES = test_client_module.bor test_server_module.bor server.bor client.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/tests/DLL_ORB/Test_Client_Module.bor b/TAO/tests/DLL_ORB/Test_Client_Module.bor
deleted file mode 100644
index f199f5b3f9e..00000000000
--- a/TAO/tests/DLL_ORB/Test_Client_Module.bor
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id$
-#
-# Makefile for building the test_client_module
-#
-
-NAME = Test_Client_Module
-
-TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
-
-OBJFILES = \
- $(OBJDIR)\testC.obj \
- $(OBJDIR)\Test_Client_Module.obj
-
-CFLAGS = \
- $(ACE_CFLAGS) \
- $(TAO_CFLAGS) \
- -DTEST_CLIENT_MODULE_BUILD_DLL
-
-LIBFILES = \
- $(ACE_LIB) \
- $(TAO_LIB)
-
-IDLFILES = \
- $(IDLDIR)\test.idl
-
-CPPDIR = .
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_core_library.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
- $(TAO_IDL) $**
diff --git a/TAO/tests/DLL_ORB/Test_Server_Module.bor b/TAO/tests/DLL_ORB/Test_Server_Module.bor
deleted file mode 100644
index 555bb428819..00000000000
--- a/TAO/tests/DLL_ORB/Test_Server_Module.bor
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id$
-#
-# Makefile for building the test_server_module
-#
-
-NAME = Test_Server_Module
-
-TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
-
-OBJFILES = \
- $(OBJDIR)\testC.obj \
- $(OBJDIR)\testS.obj \
- $(OBJDIR)\Test_Server_Module.obj \
- $(OBJDIR)\Test_i.obj
-
-CFLAGS = \
- $(ACE_CFLAGS) \
- $(TAO_CFLAGS) \
- $(TAO_PORTABLESERVER_CFLAGS) \
- -DTEST_SERVER_MODULE_BUILD_DLL
-
-LIBFILES = \
- $(ACE_LIB) \
- $(TAO_LIB) \
- $(TAO_PORTABLESERVER_LIB)
-
-IDLFILES = \
- $(IDLDIR)\test.idl
-
-CPPDIR = .
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_core_library.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
- $(TAO_IDL) $**
diff --git a/TAO/tests/DLL_ORB/client.bor b/TAO/tests/DLL_ORB/client.bor
deleted file mode 100644
index e85ac8d529e..00000000000
--- a/TAO/tests/DLL_ORB/client.bor
+++ /dev/null
@@ -1,23 +0,0 @@
-# $Id$
-#
-# Makefile for building the client
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\client.obj
-
-CFLAGS = \
- $(ACE_CFLAGS) \
- $(TAO_CFLAGS)
-
-LIBFILES = \
- $(ACE_LIB) \
- $(TAO_LIB) \
- $(CORE_BINDIR)\Test_Client_Module$(LIB_DECORATOR).lib
-
-CPPDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
-
diff --git a/TAO/tests/DLL_ORB/server.bor b/TAO/tests/DLL_ORB/server.bor
deleted file mode 100644
index 430a390988b..00000000000
--- a/TAO/tests/DLL_ORB/server.bor
+++ /dev/null
@@ -1,22 +0,0 @@
-# $Id$
-#
-# Makefile for building the server
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\server.obj
-
-CFLAGS = \
- $(ACE_CFLAGS) \
- $(TAO_CFLAGS)
-
-LIBFILES = \
- $(ACE_LIB) \
- $(TAO_LIB) \
- $(CORE_BINDIR)\Test_Server_Module$(LIB_DECORATOR).lib
-
-CPPDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>