[Monodevelop-patches-list] r1607 - trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Tue May 18 05:35:30 EDT 2004
Author: tberman
Date: 2004-05-18 05:35:30 -0400 (Tue, 18 May 2004)
New Revision: 1607
Modified:
trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs
trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
Log:
add a warning to the generated makefiles.
Once this is semi-finished (its close at the project level) we need to figure out how to abstract pieces of this so that generating makefiles for the different languages isnt a giant copy and paste maintainability nightmare.
am *very* open to suggestions.
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs 2004-05-18 06:00:00 UTC (rev 1606)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs 2004-05-18 09:35:30 UTC (rev 1607)
@@ -357,6 +357,9 @@
}
}
+ stream.WriteLine ("# This makefile is autogenerated by MonoDevelop");
+ stream.WriteLine ("# Do not modify this file");
+ stream.WriteLine ();
stream.WriteLine ("SOURCES = \\");
for (int i = 0; i < compile_files.Count; i++) {
stream.Write (compile_files[i]);
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog 2004-05-18 06:00:00 UTC (rev 1606)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog 2004-05-18 09:35:30 UTC (rev 1607)
@@ -1,5 +1,10 @@
2004-05-18 Todd Berman <tberman at sevenl.net>
+ * CSharpBindingCompilerManager.cs: add a warning to the top of the
+ makefiles.
+
+2004-05-18 Todd Berman <tberman at sevenl.net>
+
* CSharpBindingCompilerManager.cs: change from /option to -option
2004-05-16 Todd Berman <tberman at sevenl.net>
More information about the Monodevelop-patches-list
mailing list