2002/03/15 Nick Drochak <ndrochak@gol.com>
authorNick Drochak <nickd@mono-cvs.ximian.com>
Fri, 15 Mar 2002 01:43:33 +0000 (01:43 -0000)
committerNick Drochak <nickd@mono-cvs.ximian.com>
Fri, 15 Mar 2002 01:43:33 +0000 (01:43 -0000)
* makefile: Compile a version of NAnt with Mono's libs.  It only does
this if you 'make NAnt_mono.exe'. Of course, right now the resulting
exe probably is not going to work yet becuase of the immature class
libs.

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

mcs/nant/ChangeLog [new file with mode: 0644]
mcs/nant/makefile

diff --git a/mcs/nant/ChangeLog b/mcs/nant/ChangeLog
new file mode 100644 (file)
index 0000000..1ed0e5c
--- /dev/null
@@ -0,0 +1,6 @@
+2002/03/15  Nick Drochak <ndrochak@gol.com>
+
+       * makefile: Compile a version of NAnt with Mono's libs.  It only does
+       this if you 'make NAnt_mono.exe'. Of course, right now the resulting
+       exe probably is not going to work yet becuase of the immature class
+       libs.
index c3d9e40404a0113b83239c5a289f3bcdbc2ae906..801e40c8d29f85a10bb96a246162c129d1afded7 100755 (executable)
@@ -7,3 +7,9 @@ nant.exe: NAnt.exe
 
 NAnt.exe: makefile
        csc /out:NAnt.exe /recurse:*.cs 
+
+NAnt_mono.exe: makefile
+       csc /out:NAnt_mono.exe /nostdlib /noconfig /recurse:*.cs /lib:../class/lib /r:corlib.dll /r:System.Xml.dll /r:System.dll /nowarn:1595
+
+clean:
+       rm -f NAnt.exe NAnt_mono.exe
\ No newline at end of file