Просмотр исходного кода

* status/compare-assembly.cs: basedir should be there if
parameters are provided.

* status/makefile: made targets to dump info.

svn path=/trunk/mono/; revision=178

Sean MacIsaac 24 лет назад
Родитель
Сommit
ef1fdf5b8b
3 измененных файлов с 22 добавлено и 2 удалено
  1. 7 0
      ChangeLog
  2. 1 1
      status/compare-assembly.cs
  3. 14 1
      status/makefile

+ 7 - 0
ChangeLog

@@ -1,3 +1,10 @@
+2001-07-15  Sean MacIsaac  <[email protected]>
+
+	* status/compare-assembly.cs: basedir should be there if
+	parameters are provided.
+
+	* status/makefile: made targets to dump info.
+	
 2001-07-15  Joe Shaw  <[email protected]>
 
 	* configure.in: Don't create doc/Makefile as there's nothing there

+ 1 - 1
status/compare-assembly.cs

@@ -209,7 +209,7 @@ namespace Mapper
 			if (args.Length > 0) {
 				foreach (string s in args){
 					try {
-						m = new Mapper (basedir + s);
+						m = new Mapper (s);
 						m.Map ();
 					} catch (Exception e) {
 						Console.WriteLine("Error: "+e.ToString());

+ 14 - 1
status/makefile

@@ -1,3 +1,16 @@
+NETDIR=c:\\winnt\\microsoft.net\\framework\\v1.0.2914
+MCSCLASSDIR=..\\..\\mcs\\class
+CSC=//c/winnt/microsoft.net/framework/v1.0.2914/csc.exe
+
+all: exec xml
+
+exec:
+	$(CSC) /debug+ /debug:full /target:exe /out:compare.exe compare-assembly.cs
+
+xml:
+	#./compare.exe $(NETDIR)\\mscorlib.dll $(MCSCLASSDIR)\\corlib\\corlib.dll > corlib.xml
+	./compare.exe $(MCSCLASSDIR)\\corlib\\corlib.dll
+
 push:
 	perl mono-stats
-	scp *.html *.xml www@www:/web/cvsmodules/mono/class-status
+	scp *.html *.xml www@www:/web/cvsmodules/mono/class-status