Browse Source

Make compilation work with windows target, we do not need the 'monolib2' target

svn path=/trunk/mcs/; revision=524
Miguel de Icaza 24 years ago
parent
commit
eaeb89ee36

+ 2 - 0
mcs/class/corlib/System.Diagnostics/common.src

@@ -1,4 +1,6 @@
 BooleanSwitch.cs
+ConditionalAttribute.cs
+DebuggableAttribute.cs
 Switch.cs
 TraceLevel.cs
 TraceSwitch.cs

+ 1 - 0
mcs/class/corlib/System.Runtime.Serialization/common.src

@@ -1,2 +1,3 @@
 IFormatterConverter.cs
 ISerializable.cs
+SerializationInfo.cs

+ 10 - 0
mcs/class/corlib/System/common.src

@@ -58,3 +58,13 @@ UInt32.cs
 UInt64.cs
 Version.cs
 Void.cs
+DateTime.cs
+Delegate.cs
+Enum.cs
+MulticastDelegate.cs
+ParamArrayAttribute.cs
+RuntimeTypeHandle.cs
+Type.cs
+TypeInitializationException.cs
+ValueType.cs
+MarshalByRefObject.cs

+ 0 - 1
mcs/class/corlib/Unix/mono.src

@@ -1 +0,0 @@
-Wrapper.cs

+ 2 - 6
mcs/class/corlib/makefile

@@ -22,10 +22,10 @@ all:
 windows: make-list
 	$(CSC) /unsafe /target:library /out:corlibx.dll /nowarn:1595 @list
 
-monolib: make-list-mono
+monolib: make-list
 	$(CSC) /unsafe /nostdlib /target:library /out:corlib.dll /nowarn:1595 @listmono
 
-monolib2: make-list-mono
+monolib2: make-list
 	$(CSC) /unsafe /target:library /out:corlib.dll /nowarn:1595 @listmono
 
 unix:
@@ -36,7 +36,3 @@ make-list:
 		cat $$i/common.src $$i/windows.src | sed "s/^/$$i\\\\/";	\
 	done > list
 
-make-list-mono:
-	for i in $(DIRS); do						\
-		cat $$i/common.src $$i/mono.src $$i/windows.src | sed "s/^/$$i\\\\/";	\
-	done > listmono