summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlut <lut@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-02-04 21:06:38 +0000
committerlut <lut@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-02-04 21:06:38 +0000
commiteb5b01a6613da374b2a1a365d83e329ef2741a46 (patch)
treeaf3f95f49c89a9aec28b7873220cf28d79ea422f
parent350efbe9562b8dfc921373f63f216dfa8f08daa2 (diff)
downloadATCD-eb5b01a6613da374b2a1a365d83e329ef2741a46.tar.gz
ChangeLogTag: Wed Feb 4 14:58:05 2004 Tao Lu <lu@dre.vanderbilt.edu>
-rw-r--r--TAO/CIAO/CCF/CCF/CIDL/CIDL.mpc15
-rw-r--r--TAO/CIAO/CCF/CCF/CodeGenerationKit/CodeGenerationKit.mpc6
-rw-r--r--TAO/CIAO/CCF/CCF/CompilerElements/CompilerElements.mpc6
-rw-r--r--TAO/CIAO/CCF/CCF/IDL2/IDL2.mpc15
-rw-r--r--TAO/CIAO/CCF/CCF/IDL3/IDL3.mpc14
-rw-r--r--TAO/CIAO/CIDLC/CIDLC.mpc11
-rw-r--r--TAO/CIAO/ChangeLog25
7 files changed, 86 insertions, 6 deletions
diff --git a/TAO/CIAO/CCF/CCF/CIDL/CIDL.mpc b/TAO/CIAO/CCF/CCF/CIDL/CIDL.mpc
new file mode 100644
index 00000000000..1339e6737a2
--- /dev/null
+++ b/TAO/CIAO/CCF/CCF/CIDL/CIDL.mpc
@@ -0,0 +1,15 @@
+//$Id$
+
+project(*CIDL) {
+ staticname = CIDL
+ includes += ../..
+ Source_Files {
+ .
+ ./SemanticGraph
+ ./Traversal
+ ./SemanticAction
+ ./SemanticAction/Impl
+
+ }
+
+}
diff --git a/TAO/CIAO/CCF/CCF/CodeGenerationKit/CodeGenerationKit.mpc b/TAO/CIAO/CCF/CCF/CodeGenerationKit/CodeGenerationKit.mpc
new file mode 100644
index 00000000000..a2107a8303d
--- /dev/null
+++ b/TAO/CIAO/CCF/CCF/CodeGenerationKit/CodeGenerationKit.mpc
@@ -0,0 +1,6 @@
+//$Id$
+
+project(*CodeGenerationKit) {
+ staticname = CodeGenerationKit
+ includes += ../..
+}
diff --git a/TAO/CIAO/CCF/CCF/CompilerElements/CompilerElements.mpc b/TAO/CIAO/CCF/CCF/CompilerElements/CompilerElements.mpc
new file mode 100644
index 00000000000..d5b786f191a
--- /dev/null
+++ b/TAO/CIAO/CCF/CCF/CompilerElements/CompilerElements.mpc
@@ -0,0 +1,6 @@
+//$Id$
+
+project(*CompilerElements) {
+ staticname = CompilerElements
+ includes += ../..
+}
diff --git a/TAO/CIAO/CCF/CCF/IDL2/IDL2.mpc b/TAO/CIAO/CCF/CCF/IDL2/IDL2.mpc
new file mode 100644
index 00000000000..4c69189766a
--- /dev/null
+++ b/TAO/CIAO/CCF/CCF/IDL2/IDL2.mpc
@@ -0,0 +1,15 @@
+//$Id$
+
+project(*IDL2) {
+ staticname = IDL2
+ includes += ../..
+ Source_Files {
+ .
+ ./SemanticGraph
+ ./Traversal
+ ./SemanticAction
+ ./SemanticAction/Impl
+
+ }
+
+}
diff --git a/TAO/CIAO/CCF/CCF/IDL3/IDL3.mpc b/TAO/CIAO/CCF/CCF/IDL3/IDL3.mpc
new file mode 100644
index 00000000000..758e3e3231a
--- /dev/null
+++ b/TAO/CIAO/CCF/CCF/IDL3/IDL3.mpc
@@ -0,0 +1,14 @@
+//$Id$
+
+project(*IDL3) {
+ staticname = IDL3
+ includes += ../..
+ Source_Files {
+ .
+ ./SemanticGraph
+ ./Traversal
+ ./SemanticAction/Impl
+
+ }
+
+}
diff --git a/TAO/CIAO/CIDLC/CIDLC.mpc b/TAO/CIAO/CIDLC/CIDLC.mpc
new file mode 100644
index 00000000000..9288d63e96b
--- /dev/null
+++ b/TAO/CIAO/CIDLC/CIDLC.mpc
@@ -0,0 +1,11 @@
+//$Id$
+
+project(*CIDLC) {
+
+ exename = cidlc
+ includes += .. ../CCF
+ after += IDL2 IDL3 CIDL CodeGenerationKit CompilerElements
+ install = ../bin
+ libpaths += ../CCF/CCF/CIDL ../CCF/CCF/IDL3 ../CCF/CCF/IDL2 ../CCF/CCF/CodeGenerationKit ../CCF/CCF/CompilerElements
+ libs += CIDL IDL3 IDL2 CodeGenerationKit CompilerElements boost_regex boost_filesystem
+}
diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog
index f50410449d4..45fcf1f341f 100644
--- a/TAO/CIAO/ChangeLog
+++ b/TAO/CIAO/ChangeLog
@@ -1,3 +1,16 @@
+Wed Feb 4 14:58:05 2004 Tao Lu <lu@dre.vanderbilt.edu>
+
+ * ./CIDLC/CIDLC.mpc:
+ * ./CCF/CCF/CIDL/CIDL.mpc
+ * ./CCF/CCF/IDL2/IDL2.mpc
+ * ./CCF/CCF/CodeGenerationKit/CodeGenerationKit.mpc
+ * ./CCF/CCF/CompilerElements/CompilerElements.mpc
+ * ./CCF/CCF/IDL3/IDL3.mpc
+
+ Added these mpc files to build CIDLC compiler.
+ The libpath of Boost and Utility is not fixed yet.
+ Need to test all the mpc files on both Linux/Windows.
+
Wed Feb 4 13:58:36 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* ciao/CCM_Base.idl:
@@ -55,7 +68,7 @@ Wed Feb 4 13:58:36 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
Mon Feb 2 20:07:41 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tools/XML_Helpers/Makefile.XML_Helpers:
-
+
Removed RTConfiguration_Stub.cpp and included
RTConfigurationC.cpp for compilation.
@@ -63,19 +76,19 @@ Mon Feb 2 20:00:07 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tools/XML_Helpers/RTConfiguration.idl:
- Include RTCORBA_include.pidl instead of RTCORBA.pidl.
-
+ Include RTCORBA_include.pidl instead of RTCORBA.pidl.
+
* tools/XML_Helpers/RTConfiguration_Stubs.cpp:
Removed the hacks in this file since they are no longer
- necessary.
-
+ necessary.
+
* tools/XML_Helpers/XMLHelpers.mpc:
Changed the order of inheritance to get the libraries in the
right order.
- All these should fix a problem reported by Diego Sevilla Ruiz
+ All these should fix a problem reported by Diego Sevilla Ruiz
and as always thanks to him for reporting it.
Sat Jan 31 18:26:24 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>