2009-11-26 Marek Safar <marek.safar@gmail.com>
authorMarek Safar <marek.safar@gmail.com>
Thu, 26 Nov 2009 12:09:26 +0000 (12:09 -0000)
committerMarek Safar <marek.safar@gmail.com>
Thu, 26 Nov 2009 12:09:26 +0000 (12:09 -0000)
* Makefile: Add Mono.CSharp.

svn path=/trunk/mcs/; revision=146975

mcs/class/ChangeLog
mcs/class/Makefile
mcs/class/Mono.CSharp/Assembly/AssemblyInfo.cs [new file with mode: 0644]
mcs/class/Mono.CSharp/Assembly/ChangeLog [new file with mode: 0644]
mcs/class/Mono.CSharp/Makefile [new file with mode: 0644]
mcs/class/Mono.CSharp/Mono.CSharp.dll.sources [new file with mode: 0644]

index 975d012e9bcf4462bf6074b57a12de70a6c9b1b6..d351ea043b0784474dacafbc0529d846f45dab41 100644 (file)
@@ -1,3 +1,7 @@
+2009-11-26  Marek Safar  <marek.safar@gmail.com>
+
+       * Makefile: Add Mono.CSharp.
+
 2009-11-09  Marek Safar  <marek.safar@gmail.com>
 
        * Makefile: dist dlr subdirs.
index 95989ef899d60a45c8aa01707d0bc239fb4e57a3..1113e0114634c747c43e9c86e9fd6271e0959eae 100644 (file)
@@ -122,6 +122,7 @@ net_2_0_dirs := \
        Mono.Options                    \
        Mono.Simd                       \
        Mono.Tasklets                   \
+       Mono.CSharp                     \
        WindowsBase                     \
        System.Data.Services
 
diff --git a/mcs/class/Mono.CSharp/Assembly/AssemblyInfo.cs b/mcs/class/Mono.CSharp/Assembly/AssemblyInfo.cs
new file mode 100644 (file)
index 0000000..abc7078
--- /dev/null
@@ -0,0 +1,61 @@
+//
+// AssemblyInfo.cs
+//
+// Authors:
+//     Marek Safar (marek.safar@gmail.com)
+//
+// Copyright (C) 2009 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.Reflection;
+using System.Resources;
+using System.Security;
+using System.Security.Permissions;
+using System.Diagnostics;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about the assembly
+
+[assembly: AssemblyTitle ("Mono.CSharp.dll")]
+[assembly: AssemblyDescription ("Mono.CSharp.dll")]
+[assembly: AssemblyDefaultAlias ("Mono.CSharp.dll")]
+
+[assembly: AssemblyCompany (Consts.MonoCompany)]
+[assembly: AssemblyProduct (Consts.MonoProduct)]
+[assembly: AssemblyCopyright (Consts.MonoCopyright)]
+[assembly: AssemblyVersion (Consts.FxVersion)]
+[assembly: SatelliteContractVersion (Consts.FxVersion)]
+[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
+[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
+
+[assembly: NeutralResourcesLanguage ("en-US")]
+//[assembly: CLSCompliant (true)]
+[assembly: AssemblyDelaySign (true)]
+
+[assembly: AssemblyKeyFile ("../mono.pub")]
+
+[assembly: SecurityCritical]
+
+[assembly: ComVisible (false)]
+
diff --git a/mcs/class/Mono.CSharp/Assembly/ChangeLog b/mcs/class/Mono.CSharp/Assembly/ChangeLog
new file mode 100644 (file)
index 0000000..eea31e4
--- /dev/null
@@ -0,0 +1,4 @@
+2009-11-26  Marek Safar <marek.safar@gmail.com>
+
+       * ChangeLog: Added
+
diff --git a/mcs/class/Mono.CSharp/Makefile b/mcs/class/Mono.CSharp/Makefile
new file mode 100644 (file)
index 0000000..40c2bcf
--- /dev/null
@@ -0,0 +1,15 @@
+thisdir = class/Mono.CSharp
+SUBDIRS = 
+include ../../build/rules.make
+
+LIBRARY = Mono.CSharp.dll
+
+LIB_MCS_FLAGS = -r:System.Core.dll -r:System.Xml -r:System
+
+Mono.CSharp.dll.sources: ../../mcs/gmcs.exe.sources Makefile
+       cat ../../mcs/gmcs.exe.sources | grep -v AssemblyInfo.cs  | sed -e 's,^,../../mcs/,' -e 's,mcs/../,,' > Mono.CSharp.dll.sources
+       echo "../../mcs/cs-parser.cs" >> Mono.CSharp.dll.sources
+       echo "Assembly/AssemblyInfo.cs" >> Mono.CSharp.dll.sources
+
+include ../../build/library.make
+
diff --git a/mcs/class/Mono.CSharp/Mono.CSharp.dll.sources b/mcs/class/Mono.CSharp/Mono.CSharp.dll.sources
new file mode 100644 (file)
index 0000000..102c3b5
--- /dev/null
@@ -0,0 +1,50 @@
+../../mcs/anonymous.cs
+../../mcs/argument.cs
+../../mcs/assign.cs
+../../mcs/attribute.cs
+../../mcs/cs-tokenizer.cs
+../../mcs/cfold.cs
+../../mcs/class.cs
+../../mcs/codegen.cs
+../../mcs/complete.cs
+../../mcs/const.cs
+../../mcs/constant.cs
+../../mcs/convert.cs
+../../mcs/context.cs
+../../mcs/decl.cs
+../../mcs/delegate.cs
+../../mcs/doc.cs
+../../mcs/doc-bootstrap.cs
+../../mcs/driver.cs
+../../mcs/dynamic.cs
+../../mcs/ecore.cs
+../../mcs/enum.cs
+../../mcs/eval.cs
+../../mcs/expression.cs
+../../mcs/flowanalysis.cs
+../../mcs/generic.cs
+../../mcs/iterators.cs
+../../mcs/lambda.cs
+../../mcs/linq.cs
+../../mcs/literal.cs
+../../mcs/location.cs
+../../mcs/modifiers.cs
+../../mcs/namespace.cs
+../../mcs/nullable.cs
+../../mcs/parameter.cs
+../../mcs/pending.cs
+../../mcs/report.cs
+../../mcs/rootcontext.cs
+../../mcs/roottypes.cs
+../../mcs/statement.cs
+../../mcs/support.cs
+../../mcs/typemanager.cs
+../../mcs/symbolwriter.cs
+../../class/Mono.CompilerServices.SymbolWriter/MonoSymbolFile.cs
+../../class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
+../../class/Mono.CompilerServices.SymbolWriter/MonoSymbolWriter.cs
+../../class/corlib/Mono.Security.Cryptography/CryptoConvert.cs
+../../build/common/Consts.cs
+../../tools/monop/outline.cs
+../../mcs/cs-parser.cs
+Assembly/AssemblyInfo.cs