svn path=/trunk/mcs/; revision=236
@@ -1,3 +1,5 @@
+DIRS=System.Xml
+
all:
@echo "You must use 'make windows' or 'make unix'."
@echo "'make unix' is broken for now."
@@ -9,6 +11,6 @@ unix:
make-list:
- cat common.src windows.src > list
-
-test: $(PLATFORM)
+ for i in $(DIRS); do \
+ cat $$i/common.src $$i/windows.src | sed "s/^/$$i\\\\/"; \
+ done > list
@@ -33,7 +33,7 @@ namespace System.Collections {
bool Contains (object key);
- IDictionaryEnumerator GetEnumerator ();
+ new IDictionaryEnumerator GetEnumerator ();
void Remove (object key);
}
@@ -1,4 +1,5 @@
ArrayList.cs
+BitArray.cs
Hashtable.cs
ICollection.cs
IComparer.cs
@@ -6,7 +6,6 @@ ArithmeticException.cs
Array.cs
ArrayTypeMismatchException.cs
Boolean.cs
-BitArray.cs
Convert.cs
DivideByZeroException.cs
DuplicateWaitObjectException.cs