summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-13 17:30:38 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-13 17:30:38 +0000
commitc22a6c7571bfee87e8fbaa76151c2d2e5cfd9040 (patch)
tree05f529f8c6170a53bb695b56fa637107c853c833 /apps
parent009af6014a1ba0208a524a7ab0fe723b65b98447 (diff)
downloadATCD-c22a6c7571bfee87e8fbaa76151c2d2e5cfd9040.tar.gz
ChangeLogTag:Wed Aug 13 17:38:09 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/Gateway/Gateway/gateway.mpc26
-rw-r--r--apps/JAWS/clients/Blobby/blobby.mpc8
-rw-r--r--apps/JAWS/clients/Caching/caching.mpc6
-rw-r--r--apps/JAWS/server/server.mpc26
-rw-r--r--apps/drwho/drwho.mpc83
-rw-r--r--apps/soreduce/soreduce.mpc11
6 files changed, 160 insertions, 0 deletions
diff --git a/apps/Gateway/Gateway/gateway.mpc b/apps/Gateway/Gateway/gateway.mpc
new file mode 100644
index 00000000000..dd1e3314317
--- /dev/null
+++ b/apps/Gateway/Gateway/gateway.mpc
@@ -0,0 +1,26 @@
+project(Gateway) : acelib {
+ sharedname = Gateway
+ Source_Files {
+ Concrete_Connection_Handlers.cpp
+ Config_Files.cpp
+ File_Parser.cpp
+ Gateway.cpp
+ Event_Channel.cpp
+ Event_Forwarding_Discriminator.cpp
+ Options.cpp
+ Connection_Handler.cpp
+ Connection_Handler_Acceptor.cpp
+ Connection_Handler_Connector.cpp
+ }
+}
+
+project(gatewayd) : aceexe {
+
+ after += Gateway
+ libs += Gateway
+
+ Source_Files {
+ gatewayd.cpp
+ }
+}
+
diff --git a/apps/JAWS/clients/Blobby/blobby.mpc b/apps/JAWS/clients/Blobby/blobby.mpc
new file mode 100644
index 00000000000..97b2f200d2f
--- /dev/null
+++ b/apps/JAWS/clients/Blobby/blobby.mpc
@@ -0,0 +1,8 @@
+project(blobby) : aceexe {
+ Source_Files {
+ Blob.cpp
+ Blob_Handler.cpp
+ Options.cpp
+ }
+}
+
diff --git a/apps/JAWS/clients/Caching/caching.mpc b/apps/JAWS/clients/Caching/caching.mpc
new file mode 100644
index 00000000000..95e79f86fec
--- /dev/null
+++ b/apps/JAWS/clients/Caching/caching.mpc
@@ -0,0 +1,6 @@
+project(http_client) : aceexe {
+ Source_Files {
+ http_handler.cpp
+ http_client.cpp
+ }
+}
diff --git a/apps/JAWS/server/server.mpc b/apps/JAWS/server/server.mpc
new file mode 100644
index 00000000000..3b2b77c2e7f
--- /dev/null
+++ b/apps/JAWS/server/server.mpc
@@ -0,0 +1,26 @@
+project(JAWS) : acelib {
+ sharedname = JAWS
+ Source_Files {
+ HTTP_Server.cpp
+ HTTP_Config.cpp
+ HTTP_Handler.cpp
+ HTTP_Helpers.cpp
+ JAWS_Pipeline.cpp
+ JAWS_Concurrency.cpp
+ HTTP_Request.cpp
+ HTTP_Response.cpp
+ Parse_Headers.cpp
+ IO.cpp
+ }
+}
+
+project(main) : aceexe {
+
+ after += JAWS
+ libs += JAWS
+
+ Source_Files {
+ main
+ }
+}
+
diff --git a/apps/drwho/drwho.mpc b/apps/drwho/drwho.mpc
new file mode 100644
index 00000000000..512f391d3e8
--- /dev/null
+++ b/apps/drwho/drwho.mpc
@@ -0,0 +1,83 @@
+project(*-client) : aceexe {
+ Source_Files {
+ Protocol_Manager.cpp
+ Drwho_Node.cpp
+ Rwho_DB_Manager.cpp
+ Multicast_Manager.cpp
+ Protocol_Record.cpp
+ Options.cpp
+ File_Manager.cpp
+ Hash_Table.cpp
+ Binary_Search.cpp
+ Search_Struct.cpp
+ Single_Lookup.cpp
+ SML_Server.cpp
+ SM_Server.cpp
+ PMS_Usr.cpp
+ SL_Server.cpp
+ PMS_Flo.cpp
+ PM_Server.cpp
+ HT_Server.cpp
+ BS_Server.cpp
+ PMS_All.cpp
+ PMS_Ruser.cpp
+ SMR_Server.cpp
+ CM_Client.cpp
+ SM_Client.cpp
+ SMR_Client.cpp
+ PM_Client.cpp
+ HT_Client.cpp
+ BS_Client.cpp
+ PMC_All.cpp
+ PMC_Flo.cpp
+ PMC_Usr.cpp
+ SL_Client.cpp
+ PMC_Ruser.cpp
+ SMR_Client.cpp
+ SML_Client.cpp
+ CM_Server.cpp
+ client.cpp
+ }
+}
+
+project(*-server) : aceexe {
+ Source_Files {
+ Protocol_Manager.cpp
+ Drwho_Node.cpp
+ Rwho_DB_Manager.cpp
+ Multicast_Manager.cpp
+ Protocol_Record.cpp
+ Options.cpp
+ File_Manager.cpp
+ Hash_Table.cpp
+ Binary_Search.cpp
+ Search_Struct.cpp
+ Single_Lookup.cpp
+ SML_Server.cpp
+ SM_Server.cpp
+ PMS_Usr.cpp
+ SL_Server.cpp
+ PMS_Flo.cpp
+ PM_Server.cpp
+ HT_Server.cpp
+ BS_Server.cpp
+ PMS_All.cpp
+ PMS_Ruser.cpp
+ SMR_Server.cpp
+ CM_Client.cpp
+ SM_Client.cpp
+ SMR_Client.cpp
+ PM_Client.cpp
+ HT_Client.cpp
+ BS_Client.cpp
+ PMC_All.cpp
+ PMC_Flo.cpp
+ PMC_Usr.cpp
+ SL_Client.cpp
+ PMC_Ruser.cpp
+ SMR_Client.cpp
+ SML_Client.cpp
+ CM_Server.cpp
+ server.cpp
+ }
+}
diff --git a/apps/soreduce/soreduce.mpc b/apps/soreduce/soreduce.mpc
new file mode 100644
index 00000000000..6ae50113da4
--- /dev/null
+++ b/apps/soreduce/soreduce.mpc
@@ -0,0 +1,11 @@
+project(soreduce) : aceexe {
+ Source_Files {
+ Signature.cpp
+ Sig_List.cpp
+ Obj_Module.cpp
+ Library.cpp
+ SO_Group.cpp
+ soreduce
+ }
+}
+