2003-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Thu, 24 Jul 2003 17:37:39 +0000 (17:37 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Thu, 24 Jul 2003 17:37:39 +0000 (17:37 -0000)
* Makefile: only build Mono.CSharp.Debugger under linux.

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

mcs/class/ChangeLog
mcs/class/Makefile

index d0fb7e25209bb673c3870a70f69053758a478a06..989fcb393005e8432eb5c34e56f684825d6feccf 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * Makefile: only build Mono.CSharp.Debugger under linux.
+
 2003-07-23  Peter Williams  <peter@newton.cx>
 
        * Makefile (SUBDIRS): Add System.Drawing.Design.dll to the
index 62aa1a55cb602c279bae520350646cab946548b3..5e559999b08be0c203b5b8833491024026823d04 100644 (file)
@@ -1,4 +1,9 @@
 thisdir = class
+ifeq ($(PLATFORM),linux)
+MONO_CSHARP_DEBUGGER = Mono.CSharp.Debugger
+else
+MONO_CSHARP_DEBUGGER =
+endif
 SUBDIRS = \
        corlib                          \
        I18N                            \
@@ -16,7 +21,7 @@ SUBDIRS = \
        System.Runtime.Remoting         \
        System.Configuration.Install    \
        System.Management               \
-       Mono.CSharp.Debugger            \
+       $(MONO_CSHARP_DEBUGGER)         \
        Mono.Data.DB2Client             \
        Mono.Data.MySql                 \
        Mono.Data.PostgreSqlClient      \