summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple
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/examples/Simple
parentc4bac837318fda7b89f9a5a6ae06117866c21a6b (diff)
downloadATCD-fd086adbf9daa6f8e5d1c782955be38c471c8888.tar.gz
ChangeLogTag:
Diffstat (limited to 'TAO/examples/Simple')
-rw-r--r--TAO/examples/Simple/Makefile.bor15
-rw-r--r--TAO/examples/Simple/bank/Bank_Client.bor31
-rw-r--r--TAO/examples/Simple/bank/Bank_Server.bor32
-rw-r--r--TAO/examples/Simple/bank/Makefile.bor9
-rw-r--r--TAO/examples/Simple/chat/Chat_Client.bor37
-rw-r--r--TAO/examples/Simple/chat/Chat_Server.bor37
-rw-r--r--TAO/examples/Simple/chat/Makefile.bor9
-rw-r--r--TAO/examples/Simple/echo/Echo_Client.bor31
-rw-r--r--TAO/examples/Simple/echo/Echo_Server.bor31
-rw-r--r--TAO/examples/Simple/echo/Makefile.bor10
-rw-r--r--TAO/examples/Simple/grid/Grid_Client.bor31
-rw-r--r--TAO/examples/Simple/grid/Grid_Server.bor31
-rw-r--r--TAO/examples/Simple/grid/Makefile.bor10
-rw-r--r--TAO/examples/Simple/time-date/Makefile.bor10
-rw-r--r--TAO/examples/Simple/time-date/client.bor47
-rw-r--r--TAO/examples/Simple/time-date/server.bor20
-rw-r--r--TAO/examples/Simple/time-date/time_date.bor44
-rw-r--r--TAO/examples/Simple/time/Makefile.bor10
-rw-r--r--TAO/examples/Simple/time/Time_Client.bor31
-rw-r--r--TAO/examples/Simple/time/Time_Server.bor31
20 files changed, 0 insertions, 507 deletions
diff --git a/TAO/examples/Simple/Makefile.bor b/TAO/examples/Simple/Makefile.bor
deleted file mode 100644
index e3e61decfe9..00000000000
--- a/TAO/examples/Simple/Makefile.bor
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the simple examples
-#
-
-DIRS = \
- bank \
- chat \
- echo \
- grid \
- time \
- time-date
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/Simple/bank/Bank_Client.bor b/TAO/examples/Simple/bank/Bank_Client.bor
deleted file mode 100644
index 5e34ce6dd80..00000000000
--- a/TAO/examples/Simple/bank/Bank_Client.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Bank example
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\BankC.obj \
- $(OBJDIR)\BankS.obj \
- $(OBJDIR)\Bank_Client_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\client.obj
-
-IDLFILES = \
- $(IDLDIR)\Bank.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\BankC.cpp $(IDLDIR)\BankS.cpp: $(IDLDIR)\Bank.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/bank/Bank_Server.bor b/TAO/examples/Simple/bank/Bank_Server.bor
deleted file mode 100644
index b59364a397e..00000000000
--- a/TAO/examples/Simple/bank/Bank_Server.bor
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Bank example
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\BankC.obj \
- $(OBJDIR)\BankS.obj \
- $(OBJDIR)\Account_i.obj \
- $(OBJDIR)\AccountManager_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\server.obj
-
-IDLFILES = \
- $(IDLDIR)\Bank.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\BankC.cpp $(IDLDIR)\BankS.cpp: $(IDLDIR)\Bank.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/bank/Makefile.bor b/TAO/examples/Simple/bank/Makefile.bor
deleted file mode 100644
index 6d96676d820..00000000000
--- a/TAO/examples/Simple/bank/Makefile.bor
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Bank example
-#
-
-MAKEFILES = Bank_Client.bor Bank_Server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/Simple/chat/Chat_Client.bor b/TAO/examples/Simple/chat/Chat_Client.bor
deleted file mode 100644
index df8b751fb2b..00000000000
--- a/TAO/examples/Simple/chat/Chat_Client.bor
+++ /dev/null
@@ -1,37 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Chat example
-#
-
-NAME = Chat_Client
-
-OBJFILES = \
- $(OBJDIR)\ReceiverC.obj \
- $(OBJDIR)\ReceiverS.obj \
- $(OBJDIR)\BroadcasterC.obj \
- $(OBJDIR)\BroadcasterS.obj \
- $(OBJDIR)\Receiver_i.obj \
- $(OBJDIR)\Client_i.obj \
- $(OBJDIR)\client.obj
-
-IDLFILES = \
- $(IDLDIR)\Broadcaster.idl \
- $(IDLDIR)\Receiver.idl
-
-CPPDIR = .
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\BroadcasterC.cpp $(IDLDIR)\BroadcasterS.cpp: $(IDLDIR)\Broadcaster.idl
- $(TAO_IDL) $**
-
-$(IDLDIR)\ReceiverC.cpp $(IDLDIR)\ReceiverS.cpp: $(IDLDIR)\Receiver.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/chat/Chat_Server.bor b/TAO/examples/Simple/chat/Chat_Server.bor
deleted file mode 100644
index b3637814838..00000000000
--- a/TAO/examples/Simple/chat/Chat_Server.bor
+++ /dev/null
@@ -1,37 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Chat example
-#
-
-NAME = Chat_Server
-
-OBJFILES = \
- $(OBJDIR)\ReceiverC.obj \
- $(OBJDIR)\ReceiverS.obj \
- $(OBJDIR)\BroadcasterC.obj \
- $(OBJDIR)\BroadcasterS.obj \
- $(OBJDIR)\Broadcaster_i.obj \
- $(OBJDIR)\Server_i.obj \
- $(OBJDIR)\server.obj
-
-IDLFILES = \
- $(IDLDIR)\Broadcaster.idl \
- $(IDLDIR)\Receiver.idl
-
-CPPDIR = .
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\BroadcasterC.cpp $(IDLDIR)\BroadcasterS.cpp: $(IDLDIR)\Broadcaster.idl
- $(TAO_IDL) $**
-
-$(IDLDIR)\ReceiverC.cpp $(IDLDIR)\ReceiverS.cpp: $(IDLDIR)\Receiver.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/chat/Makefile.bor b/TAO/examples/Simple/chat/Makefile.bor
deleted file mode 100644
index eeb57d49dca..00000000000
--- a/TAO/examples/Simple/chat/Makefile.bor
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Chat example
-#
-
-MAKEFILES = Chat_Client.bor Chat_Server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
diff --git a/TAO/examples/Simple/echo/Echo_Client.bor b/TAO/examples/Simple/echo/Echo_Client.bor
deleted file mode 100644
index ef4fe97ff13..00000000000
--- a/TAO/examples/Simple/echo/Echo_Client.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Echo example
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\EchoC.obj \
- $(OBJDIR)\EchoS.obj \
- $(OBJDIR)\Echo_Client_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\client.obj
-
-IDLFILES = \
- $(IDLDIR)\Echo.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\EchoC.cpp $(IDLDIR)\EchoS.cpp: $(IDLDIR)\Echo.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/echo/Echo_Server.bor b/TAO/examples/Simple/echo/Echo_Server.bor
deleted file mode 100644
index 58e43ce801c..00000000000
--- a/TAO/examples/Simple/echo/Echo_Server.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Echo example
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\EchoC.obj \
- $(OBJDIR)\EchoS.obj \
- $(OBJDIR)\Echo_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\server.obj
-
-IDLFILES = \
- $(IDLDIR)\Echo.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\EchoC.cpp $(IDLDIR)\EchoS.cpp: $(IDLDIR)\Echo.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/echo/Makefile.bor b/TAO/examples/Simple/echo/Makefile.bor
deleted file mode 100644
index 743aec85178..00000000000
--- a/TAO/examples/Simple/echo/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Echo example
-#
-
-MAKEFILES = Echo_Client.bor Echo_Server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
-
diff --git a/TAO/examples/Simple/grid/Grid_Client.bor b/TAO/examples/Simple/grid/Grid_Client.bor
deleted file mode 100644
index f84655f5283..00000000000
--- a/TAO/examples/Simple/grid/Grid_Client.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Grid example
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\GridC.obj \
- $(OBJDIR)\GridS.obj \
- $(OBJDIR)\Grid_Client_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\client.obj
-
-IDLFILES = \
- $(IDLDIR)\Grid.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\GridC.cpp $(IDLDIR)\GridS.cpp: $(IDLDIR)\Grid.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/grid/Grid_Server.bor b/TAO/examples/Simple/grid/Grid_Server.bor
deleted file mode 100644
index 2bd7873e8d1..00000000000
--- a/TAO/examples/Simple/grid/Grid_Server.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Grid example
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\GridC.obj \
- $(OBJDIR)\GridS.obj \
- $(OBJDIR)\Grid_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\server.obj
-
-IDLFILES = \
- $(IDLDIR)\Grid.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\GridC.cpp $(IDLDIR)\GridS.cpp: $(IDLDIR)\Grid.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/grid/Makefile.bor b/TAO/examples/Simple/grid/Makefile.bor
deleted file mode 100644
index f5bde94a75d..00000000000
--- a/TAO/examples/Simple/grid/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Grid example
-#
-
-MAKEFILES = Grid_Client.bor Grid_Server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
-
diff --git a/TAO/examples/Simple/time-date/Makefile.bor b/TAO/examples/Simple/time-date/Makefile.bor
deleted file mode 100644
index 7deabf519a8..00000000000
--- a/TAO/examples/Simple/time-date/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Time-date example
-#
-
-MAKEFILES = time_date.bor client.bor server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
-
diff --git a/TAO/examples/Simple/time-date/client.bor b/TAO/examples/Simple/time-date/client.bor
deleted file mode 100644
index 050fb34b75d..00000000000
--- a/TAO/examples/Simple/time-date/client.bor
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Time-date example
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\Time_DateC.obj \
- $(OBJDIR)\Time_DateS.obj \
- $(OBJDIR)\Time_Date_Client_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\client.obj
-
-CFLAGS = \
- $(ACE_CFLAGS) \
- $(TAO_CFLAGS) \
- $(TAO_COSNAMING_CFLAGS) \
- $(TAO_SVC_UTILS_CFLAGS) \
- $(TAO_IORTABLE_CFLAGS) \
- $(TAO_PORTABLESERVER_CFLAGS)
-
-LIBFILES = \
- $(ACE_LIB) \
- $(TAO_LIB) \
- $(TAO_COSNAMING_LIB) \
- $(TAO_SVC_UTILS_LIB) \
- $(TAO_IORTABLE_LIB) \
- $(TAO_PORTABLESERVER_LIB)
-
-IDLFILES = \
- $(IDLDIR)\Time_Date.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\Time_DateC.cpp $(IDLDIR)\Time_DateS.cpp: $(IDLDIR)\Time_Date.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/time-date/server.bor b/TAO/examples/Simple/time-date/server.bor
deleted file mode 100644
index 8d8e1ed9002..00000000000
--- a/TAO/examples/Simple/time-date/server.bor
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Time-date example
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\server.obj
-
-IDLFILES = \
- $(BINDIR)\TimeDate$(LIB_DECORATOR).lib
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
diff --git a/TAO/examples/Simple/time-date/time_date.bor b/TAO/examples/Simple/time-date/time_date.bor
deleted file mode 100644
index 6e0335f12f4..00000000000
--- a/TAO/examples/Simple/time-date/time_date.bor
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the time-date library
-#
-
-NAME = Time_Date
-
-TARGET = .\$(NAME).dll
-
-TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1
-
-OBJFILES = \
- $(OBJDIR)\Time_DateS.obj \
- $(OBJDIR)\Time_Date.obj \
- $(OBJDIR)\Time_Date_i.obj \
- $(OBJDIR)\Time_DateC.obj
-
-CFLAGS = \
- $(ACE_CFLAGS) \
- $(TAO_CFLAGS) \
- $(TAO_PORTABLESERVER_CFLAGS)
-
-LIBFILES = \
- $(ACE_LIB) \
- $(TAO_LIB) \
- $(TAO_PORTABLESERVER_LIB)
-
-IDLFILES = \
- $(IDLDIR)\Time_Date.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_library.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\Time_DateC.cpp $(IDLDIR)\Time_DateS.cpp: $(IDLDIR)\Time_Date.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/time/Makefile.bor b/TAO/examples/Simple/time/Makefile.bor
deleted file mode 100644
index 8544fa538e2..00000000000
--- a/TAO/examples/Simple/time/Makefile.bor
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Time example
-#
-
-MAKEFILES = Time_Client.bor Time_Server.bor
-
-!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
-
diff --git a/TAO/examples/Simple/time/Time_Client.bor b/TAO/examples/Simple/time/Time_Client.bor
deleted file mode 100644
index 862ea1e5259..00000000000
--- a/TAO/examples/Simple/time/Time_Client.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Time example
-#
-
-NAME = client
-
-OBJFILES = \
- $(OBJDIR)\TimeC.obj \
- $(OBJDIR)\TimeS.obj \
- $(OBJDIR)\Time_Client_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\client.obj
-
-IDLFILES = \
- $(IDLDIR)\Time.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\TimeC.cpp $(IDLDIR)\TimeS.cpp: $(IDLDIR)\Time.idl
- $(TAO_IDL) $**
-
diff --git a/TAO/examples/Simple/time/Time_Server.bor b/TAO/examples/Simple/time/Time_Server.bor
deleted file mode 100644
index 3a16103874a..00000000000
--- a/TAO/examples/Simple/time/Time_Server.bor
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# $Id$
-#
-# Makefile for building the Time example
-#
-
-NAME = server
-
-OBJFILES = \
- $(OBJDIR)\TimeC.obj \
- $(OBJDIR)\TimeS.obj \
- $(OBJDIR)\Time_i.obj \
- $(OBJDIR)\Simple_util.obj \
- $(OBJDIR)\server.obj
-
-IDLFILES = \
- $(IDLDIR)\Time.idl
-
-CPPDIR = .;..
-
-IDLDIR = .
-
-!include <$(ACE_ROOT)\include\makeinclude\build_example.bor>
-
-#
-# IDL Build rules
-#
-
-$(IDLDIR)\TimeC.cpp $(IDLDIR)\TimeS.cpp: $(IDLDIR)\Time.idl
- $(TAO_IDL) $**
-