summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-07-30 13:23:07 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-07-30 13:23:07 +0000
commit3172e683fad186229a32d60deb50a8e90cd10d5c (patch)
tree412b51ffac1feddfc8fa54b6f0ea8dea1db2aa21
parente005f45665095f1fb4f6ab209a807dde9eaae770 (diff)
downloadATCD-3172e683fad186229a32d60deb50a8e90cd10d5c.tar.gz
ChangeLogTag: Tue Jul 30 08:21:36 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog26
-rw-r--r--TAO/examples/AMH/Sink_Server/Sink_Server.mpc36
-rw-r--r--TAO/examples/AMI/FL_Callback/FL_Callback.mpc23
-rw-r--r--TAO/examples/Callback_Quoter/Callback_Quoter.mpc32
-rw-r--r--TAO/examples/Content_Server/SMI_Iterator/SMI_Iterator.mpc17
-rw-r--r--TAO/examples/Event_Comm/Event_Comm.mpc31
-rw-r--r--TAO/examples/Load_Balancing/Load_Balancing.mpc48
-rw-r--r--TAO/examples/Load_Balancing_persistent/Load_Balancing_persistent.mpc39
-rw-r--r--TAO/examples/Logging/Logging.mpc20
-rw-r--r--TAO/examples/OBV/Typed_Events/Typed_Events.mpc22
-rw-r--r--TAO/examples/Persistent_Grid/Persistent_Grid.mpc29
-rw-r--r--TAO/examples/PluggableUDP/tests/Basic/Basic.mpc21
-rw-r--r--TAO/examples/PluggableUDP/tests/Performance/Performance.mpc20
-rw-r--r--TAO/examples/PluggableUDP/tests/SimplePerformance/SimplePerformance.mpc18
-rw-r--r--TAO/examples/Quoter/Quoter.mpc50
-rw-r--r--TAO/examples/RTCORBA/Activity/Activity.mpc4
-rw-r--r--TAO/examples/Simple/bank/bank.mpc19
-rw-r--r--TAO/examples/Simple/chat/chat.mpc38
-rw-r--r--TAO/examples/Simple/echo/echo.mpc17
-rw-r--r--TAO/examples/Simple/grid/grid.mpc17
-rw-r--r--TAO/examples/Simple/time-date/time_date.mpc16
-rw-r--r--TAO/examples/Simple/time/time.mpc17
-rw-r--r--TAO/examples/TypeCode_Creation/TypeCode_Creation.mpc10
23 files changed, 570 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8162f3303f9..82c94bde85b 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,29 @@
+Tue Jul 30 08:21:36 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * examples/AMH/Sink_Server/Sink_Server.mpc:
+ * examples/AMI/FL_Callback/FL_Callback.mpc:
+ * examples/Callback_Quoter/Callback_Quoter.mpc:
+ * examples/Content_Server/SMI_Iterator/SMI_Iterator.mpc:
+ * examples/Event_Comm/Event_Comm.mpc:
+ * examples/Load_Balancing/Load_Balancing.mpc:
+ * examples/Load_Balancing_persistent/Load_Balancing_persistent.mpc:
+ * examples/Logging/Logging.mpc:
+ * examples/OBV/Typed_Events/Typed_Events.mpc:
+ * examples/Persistent_Grid/Persistent_Grid.mpc:
+ * examples/PluggableUDP/tests/Basic/Basic.mpc:
+ * examples/PluggableUDP/tests/Performance/Performance.mpc:
+ * examples/PluggableUDP/tests/SimplePerformance/SimplePerformance.mpc:
+ * examples/Quoter/Quoter.mpc:
+ * examples/RTCORBA/Activity/Activity.mpc:
+ * examples/Simple/bank/bank.mpc:
+ * examples/Simple/chat/chat.mpc:
+ * examples/Simple/echo/echo.mpc:
+ * examples/Simple/grid/grid.mpc:
+ * examples/Simple/time-date/time_date.mpc:
+ * examples/Simple/time/time.mpc:
+ * examples/TypeCode_Creation/TypeCode_Creation.mpc:
+
+ Added new mpc files for the TAO examples.
Tue Jul 30 11:31:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
diff --git a/TAO/examples/AMH/Sink_Server/Sink_Server.mpc b/TAO/examples/AMH/Sink_Server/Sink_Server.mpc
new file mode 100644
index 00000000000..2e13223c858
--- /dev/null
+++ b/TAO/examples/AMH/Sink_Server/Sink_Server.mpc
@@ -0,0 +1,36 @@
+project(st_server): server, strategies {
+ idlflags += -GH
+ exename = st_server
+ requires += ami
+
+ Source_Files {
+ st_server.cpp
+ Base_Server.cpp
+ AMH_Servant.cpp
+ Timer_Handler.cpp
+ }
+}
+
+project(mt_server): server, strategies {
+ idlflags += -GH
+ exename = mt_server
+ requires += ami
+
+ Source_Files {
+ mt_server.cpp
+ Base_Server.cpp
+ AMH_Servant.cpp
+ Timer_Handler.cpp
+ }
+}
+
+project: client, strategies {
+ idlflags += -GH
+ requires += ami
+
+ Source_Files {
+ TestC.cpp
+ client.cpp
+ }
+}
+
diff --git a/TAO/examples/AMI/FL_Callback/FL_Callback.mpc b/TAO/examples/AMI/FL_Callback/FL_Callback.mpc
new file mode 100644
index 00000000000..70192acb8d9
--- /dev/null
+++ b/TAO/examples/AMI/FL_Callback/FL_Callback.mpc
@@ -0,0 +1,23 @@
+project(progress): server, strategies {
+ exename = progress
+ idlflags -= -Sc
+ idlflags += -GC
+ requires += fl_reactor ami
+
+ Source_Files {
+ Progress_i.cpp
+ progress.cpp
+ }
+}
+
+project(peer): server, strategies {
+ exename = peer
+ idlflags -= -Sc
+ idlflags += -GC
+ requires += fl_reactor ami
+
+ Source_Files {
+ Peer_i.cpp
+ peer.cpp
+ }
+}
diff --git a/TAO/examples/Callback_Quoter/Callback_Quoter.mpc b/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
new file mode 100644
index 00000000000..e9b77440891
--- /dev/null
+++ b/TAO/examples/Callback_Quoter/Callback_Quoter.mpc
@@ -0,0 +1,32 @@
+project(notifier): namingexe {
+ exename = notifier
+
+ Source_Files {
+ Notifier_i.cpp
+ Notifier_Input_Handler.cpp
+ notifier.cpp
+ }
+}
+
+project(consumer): namingexe {
+ exename = consumer
+
+ Source_Files {
+ Consumer_Input_Handler.cpp
+ Consumer_Signal_Handler.cpp
+ Consumer_Handler.cpp
+ consumer.cpp
+ Consumer_i.cpp
+ }
+}
+
+project(supplier): namingexe {
+ exename = supplier
+
+ Source_Files {
+ Supplier_i.cpp
+ Supplier_Timer_Handler.cpp
+ supplier.cpp
+ Consumer_i.cpp
+ }
+}
diff --git a/TAO/examples/Content_Server/SMI_Iterator/SMI_Iterator.mpc b/TAO/examples/Content_Server/SMI_Iterator/SMI_Iterator.mpc
new file mode 100644
index 00000000000..5ac07b1b324
--- /dev/null
+++ b/TAO/examples/Content_Server/SMI_Iterator/SMI_Iterator.mpc
@@ -0,0 +1,17 @@
+project: namingexe {
+ Source_Files {
+ Content_Iterator_i.cpp
+ Iterator_Factory_i.cpp
+ server.cpp
+ }
+}
+
+project(client): namingexe {
+ exename = client
+
+ Source_Files {
+ Web_ServerC.cpp
+ client.cpp
+ }
+}
+
diff --git a/TAO/examples/Event_Comm/Event_Comm.mpc b/TAO/examples/Event_Comm/Event_Comm.mpc
new file mode 100644
index 00000000000..b1b1f5da373
--- /dev/null
+++ b/TAO/examples/Event_Comm/Event_Comm.mpc
@@ -0,0 +1,31 @@
+project(notifier): namingexe {
+ exename = notifier
+
+ Source_Files {
+ Event_Comm_i.cpp
+ Notifier_Server.cpp
+ notifier.cpp
+ }
+}
+
+project(consumer): namingexe {
+ exename = consumer
+
+ Source_Files {
+ Consumer_Input_Handler.cpp
+ Consumer_Handler.cpp
+ consumer.cpp
+ Event_Comm_i.cpp
+ }
+}
+
+project(supplier): namingexe {
+ exename = supplier
+
+ Source_Files {
+ Event_Comm_i.cpp
+ Supplier_Input_Handler.cpp
+ supplier.cpp
+ Notifier_Handler.cpp
+ }
+}
diff --git a/TAO/examples/Load_Balancing/Load_Balancing.mpc b/TAO/examples/Load_Balancing/Load_Balancing.mpc
new file mode 100644
index 00000000000..21318ae94b9
--- /dev/null
+++ b/TAO/examples/Load_Balancing/Load_Balancing.mpc
@@ -0,0 +1,48 @@
+project: server {
+ avoids += repo
+
+ IDL_Files {
+ Identity.idl
+ Load_Balancer.idl
+ }
+
+ Source_Files {
+ IdentityC.cpp
+ IdentityS.cpp
+ Load_BalancerC.cpp
+ Identity_Server.cpp
+ Identity_i.cpp
+ }
+}
+
+project(client): server {
+ exename = client
+ avoids += repo
+
+ IDL_Files {
+ Identity.idl
+ Load_Balancer.idl
+ }
+
+ Source_Files {
+ IdentityC.cpp
+ Load_BalancerC.cpp
+ Identity_Client.cpp
+ }
+}
+
+project(load balancer): server {
+ exename = load_balancer
+ avoids += repo
+
+ IDL_Files {
+ Load_Balancer.idl
+ }
+
+ Source_Files {
+ Load_BalancerS.cpp
+ Load_BalancerC.cpp
+ Load_Balancer_i.cpp
+ Load_Balancing_Service.cpp
+ }
+}
diff --git a/TAO/examples/Load_Balancing_persistent/Load_Balancing_persistent.mpc b/TAO/examples/Load_Balancing_persistent/Load_Balancing_persistent.mpc
new file mode 100644
index 00000000000..a41882d9b92
--- /dev/null
+++ b/TAO/examples/Load_Balancing_persistent/Load_Balancing_persistent.mpc
@@ -0,0 +1,39 @@
+project(load balancer): server {
+ avoids += minimum_corba repo
+ exename = load_balancer
+
+ IDL_Files {
+ Load_Balancer.idl
+ }
+
+ Source_Files {
+ Load_BalancerC.cpp
+ Load_BalancerS.cpp
+ Load_Balancer_i.cpp
+ Load_Balancing_Service.cpp
+ }
+}
+
+project: server {
+ avoids += minimum_corba repo
+
+ Source_Files {
+ IdentityC.cpp
+ IdentityS.cpp
+ Load_BalancerC.cpp
+ Identity_Server.cpp
+ Identity_i.cpp
+ }
+}
+
+project(client): server {
+ avoids += minimum_corba repo
+ exename = client
+
+ Source_Files {
+ IdentityC.cpp
+ Load_BalancerC.cpp
+ Identity_Client.cpp
+ }
+}
+
diff --git a/TAO/examples/Logging/Logging.mpc b/TAO/examples/Logging/Logging.mpc
new file mode 100644
index 00000000000..b22b4d27270
--- /dev/null
+++ b/TAO/examples/Logging/Logging.mpc
@@ -0,0 +1,20 @@
+project(Logging Service): namingexe {
+ exename = Logging_Service
+ comps += LifeCycle
+
+ Source_Files {
+ Logger_i.cpp
+ Logging_Service.cpp
+ Logging_Service_i.cpp
+ }
+}
+
+project(Logging Test): namingexe {
+ exename = Logging_Test
+ comps += LifeCycle
+
+ Source_Files {
+ Logging_Test.cpp
+ Logging_Test_i.cpp
+ }
+}
diff --git a/TAO/examples/OBV/Typed_Events/Typed_Events.mpc b/TAO/examples/OBV/Typed_Events/Typed_Events.mpc
new file mode 100644
index 00000000000..b960cbcdc5e
--- /dev/null
+++ b/TAO/examples/OBV/Typed_Events/Typed_Events.mpc
@@ -0,0 +1,22 @@
+project: server {
+ idlflags += -Gv
+
+ Source_Files {
+ Server_i.cpp
+ Event_Types_impl.cpp
+ ../Simple_util.cpp
+ server.cpp
+ }
+}
+
+project(client): server {
+ exename = client
+ idlflags += -Gv
+
+ Source_Files {
+ Client_i.cpp
+ Event_Types_impl.cpp
+ ../Simple_util.cpp
+ client.cpp
+ }
+}
diff --git a/TAO/examples/Persistent_Grid/Persistent_Grid.mpc b/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
new file mode 100644
index 00000000000..92133998162
--- /dev/null
+++ b/TAO/examples/Persistent_Grid/Persistent_Grid.mpc
@@ -0,0 +1,29 @@
+project: server {
+ Source_Files {
+ Grid_i.cpp
+ Simple_util.cpp
+ server.cpp
+ }
+}
+
+project(client): server {
+ exename = client
+
+ Source_Files {
+ GridC.cpp
+ Simple_util.cpp
+ Grid_Client_i.cpp
+ client.cpp
+ }
+}
+
+project(persistent client): server {
+ exename = persistent_client
+
+ Source_Files {
+ GridC.cpp
+ Simple_util.cpp
+ Persistent_Client_i.cpp
+ persistent_client.cpp
+ }
+}
diff --git a/TAO/examples/PluggableUDP/tests/Basic/Basic.mpc b/TAO/examples/PluggableUDP/tests/Basic/Basic.mpc
new file mode 100644
index 00000000000..14fec0011b0
--- /dev/null
+++ b/TAO/examples/PluggableUDP/tests/Basic/Basic.mpc
@@ -0,0 +1,21 @@
+project: server, strategies {
+ idlflags += -Sp -Sd
+
+ Source_Files {
+ UDP_Client_i.cpp
+ server.cpp
+ UDP_i.cpp
+ }
+}
+
+project(client): server, strategies {
+ idlflags += -Sp -Sd
+ exename = client
+
+ Source_Files {
+ client.cpp
+ UDP_Client_i.cpp
+ UDP_i.cpp
+ }
+}
+
diff --git a/TAO/examples/PluggableUDP/tests/Performance/Performance.mpc b/TAO/examples/PluggableUDP/tests/Performance/Performance.mpc
new file mode 100644
index 00000000000..26d2f25a243
--- /dev/null
+++ b/TAO/examples/PluggableUDP/tests/Performance/Performance.mpc
@@ -0,0 +1,20 @@
+project: server, strategies {
+ idlflags += -Sd -Sp
+
+ Source_Files {
+ UDP_i.cpp
+ server.cpp
+ }
+}
+
+project(client): server, strategies {
+ idlflags += -Sd -Sp
+ exename = client
+
+ Source_Files {
+ client.cpp
+ UDP_i.cpp
+ UDP_PerformanceClient.cpp
+ }
+}
+
diff --git a/TAO/examples/PluggableUDP/tests/SimplePerformance/SimplePerformance.mpc b/TAO/examples/PluggableUDP/tests/SimplePerformance/SimplePerformance.mpc
new file mode 100644
index 00000000000..a021b4a7027
--- /dev/null
+++ b/TAO/examples/PluggableUDP/tests/SimplePerformance/SimplePerformance.mpc
@@ -0,0 +1,18 @@
+project: server, strategies {
+ idlflags += -Sp -Sd
+
+ Source_Files {
+ server.cpp
+ test_i.cpp
+ }
+}
+
+project(client): server, strategies {
+ idlflags += -Sp -Sd
+ exename = client
+
+ Source_Files {
+ client.cpp
+ }
+}
+
diff --git a/TAO/examples/Quoter/Quoter.mpc b/TAO/examples/Quoter/Quoter.mpc
new file mode 100644
index 00000000000..24b184b267c
--- /dev/null
+++ b/TAO/examples/Quoter/Quoter.mpc
@@ -0,0 +1,50 @@
+project: namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+
+ Source_Files {
+ server.cpp
+ Quoter_i.cpp
+ }
+}
+
+project(client): namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+ exename = client
+
+ Source_Files {
+ client.cpp
+ }
+}
+
+project(Factory Finder): namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+ exename = Factory_Finder
+
+ Source_Files {
+ Factory_Finder.cpp
+ Factory_Finder_i.cpp
+ }
+}
+
+project(Generic Factory): namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+ exename = Generic_Factory
+
+ Source_Files {
+ Generic_Factory.cpp
+ Generic_Factory_i.cpp
+ }
+}
+
diff --git a/TAO/examples/RTCORBA/Activity/Activity.mpc b/TAO/examples/RTCORBA/Activity/Activity.mpc
new file mode 100644
index 00000000000..1bc5a6338c8
--- /dev/null
+++ b/TAO/examples/RTCORBA/Activity/Activity.mpc
@@ -0,0 +1,4 @@
+project(activity): namingexe, rt_server {
+ exename = activity
+}
+
diff --git a/TAO/examples/Simple/bank/bank.mpc b/TAO/examples/Simple/bank/bank.mpc
new file mode 100644
index 00000000000..8615c64144f
--- /dev/null
+++ b/TAO/examples/Simple/bank/bank.mpc
@@ -0,0 +1,19 @@
+project: namingexe {
+ Source_Files {
+ Account_i.cpp
+ AccountManager_i.cpp
+ ../Simple_util.cpp
+ server.cpp
+ }
+}
+
+project(client): namingexe {
+ exename = client
+
+ Source_Files {
+ BankC.cpp
+ client.cpp
+ ../Simple_util.cpp
+ Bank_Client_i.cpp
+ }
+}
diff --git a/TAO/examples/Simple/chat/chat.mpc b/TAO/examples/Simple/chat/chat.mpc
new file mode 100644
index 00000000000..eed382a580a
--- /dev/null
+++ b/TAO/examples/Simple/chat/chat.mpc
@@ -0,0 +1,38 @@
+project: server {
+ depends += IORTable
+ libs += TAO_IORTable
+
+ IDL_Files {
+ Receiver.idl
+ Broadcaster.idl
+ }
+
+ Source_Files {
+ ReceiverS.cpp
+ ReceiverC.cpp
+ BroadcasterC.cpp
+ BroadcasterS.cpp
+ Broadcaster_i.cpp
+ Server_i.cpp
+ server.cpp
+ }
+}
+
+project(client): server {
+ exename = client
+
+ IDL_Files {
+ Receiver.idl
+ Broadcaster.idl
+ }
+
+ Source_Files {
+ ReceiverS.cpp
+ ReceiverC.cpp
+ BroadcasterC.cpp
+ BroadcasterS.cpp
+ Receiver_i.cpp
+ Client_i.cpp
+ client.cpp
+ }
+}
diff --git a/TAO/examples/Simple/echo/echo.mpc b/TAO/examples/Simple/echo/echo.mpc
new file mode 100644
index 00000000000..a0f7eb00824
--- /dev/null
+++ b/TAO/examples/Simple/echo/echo.mpc
@@ -0,0 +1,17 @@
+project: namingexe {
+ Source_Files {
+ Echo_i.cpp
+ ../Simple_util.cpp
+ server.cpp
+ }
+}
+
+project(client): namingexe {
+ exename = client
+
+ Source_Files {
+ Echo_Client_i.cpp
+ ../Simple_util.cpp
+ client.cpp
+ }
+}
diff --git a/TAO/examples/Simple/grid/grid.mpc b/TAO/examples/Simple/grid/grid.mpc
new file mode 100644
index 00000000000..c78abd91e73
--- /dev/null
+++ b/TAO/examples/Simple/grid/grid.mpc
@@ -0,0 +1,17 @@
+project: namingexe {
+ Source_Files {
+ Grid_i.cpp
+ server.cpp
+ ../Simple_util.cpp
+ }
+}
+
+project(client): namingexe {
+ exename = client
+
+ Source_Files {
+ client.cpp
+ ../Simple_util.cpp
+ Grid_Client_i.cpp
+ }
+}
diff --git a/TAO/examples/Simple/time-date/time_date.mpc b/TAO/examples/Simple/time-date/time_date.mpc
new file mode 100644
index 00000000000..f9a579d1500
--- /dev/null
+++ b/TAO/examples/Simple/time-date/time_date.mpc
@@ -0,0 +1,16 @@
+project: namingexe {
+ Source_Files {
+ server.cpp
+ ../Simple_util.cpp
+ }
+}
+
+project(client): namingexe {
+ exename = client
+
+ Source_Files {
+ client.cpp
+ ../Simple_util.cpp
+ Time_Date_Client_i.cpp
+ }
+}
diff --git a/TAO/examples/Simple/time/time.mpc b/TAO/examples/Simple/time/time.mpc
new file mode 100644
index 00000000000..8560adba888
--- /dev/null
+++ b/TAO/examples/Simple/time/time.mpc
@@ -0,0 +1,17 @@
+project: namingexe {
+ Source_Files {
+ Time_i.cpp
+ server.cpp
+ ../Simple_util.cpp
+ }
+}
+
+project(client): namingexe {
+ exename = client
+
+ Source_Files {
+ client.cpp
+ ../Simple_util.cpp
+ Time_Client_i.cpp
+ }
+}
diff --git a/TAO/examples/TypeCode_Creation/TypeCode_Creation.mpc b/TAO/examples/TypeCode_Creation/TypeCode_Creation.mpc
new file mode 100644
index 00000000000..e5721767ad2
--- /dev/null
+++ b/TAO/examples/TypeCode_Creation/TypeCode_Creation.mpc
@@ -0,0 +1,10 @@
+project(create_tc): client {
+ exename = create_tc
+ libs += TAO_TypeCodeFactory TAO_IFR_Client
+ depends += TypeCodeFactory IFR_Client
+
+ Source_Files {
+ testC.cpp
+ main.cpp
+ }
+} \ No newline at end of file