[Mono-list] System.Windows.Forms needs a makefile
Gonzalo Paniagua Javier
gonzalo@gnome-db.org
Wed, 26 Jun 2002 01:25:05 +0200
--0OAP2g/MAC+5xKAE
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Here they are.
All the System.Windows.Forms stuff is commented out.
--
Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
http://www.gnome-db.org/~gonzalo/
--0OAP2g/MAC+5xKAE
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: attachment; filename="library.build"
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- NAnt build file for class libraries -->
<!-- Target windows builds libraries _for_ windows -->
<!-- Target linux builds libraries _for_ linux -->
<project name="corlib" default="build">
<property name="debug" value="false"/>
<target name="build">
<nant basedir="corlib" target="build"/>
<nant basedir="System" target="build"/>
<nant basedir="System.Drawing" target="build"/>
<nant basedir="System.XML" target="build"/>
<nant basedir="System.Data" target="build"/>
<nant basedir="System.Web" target="build"/>
<nant basedir="Microsoft.VisualBasic" target="build"/>
<!--
<nant basedir="System.Windows.Forms" target="build"/>
-->
</target>
<target name="test">
<nant basedir="corlib" target="test"/>
<nant basedir="System" target="test"/>
<nant basedir="System.XML" target="test"/>
<nant basedir="System.Data" target="test"/>
<nant basedir="Microsoft.VisualBasic" target="test"/>
<!--
<nant basedir="System.Windows.Forms" target="test"/>
-->
</target>
<target name="clean">
<delete failonerror="false">
<fileset basedir="lib">
<includes name="*.dll"/>
</fileset>
</delete>
<nant basedir="corlib" target="clean"/>
<nant basedir="System" target="clean"/>
<nant basedir="System.Drawing" target="clean"/>
<nant basedir="System.XML" target="clean"/>
<nant basedir="System.Data" target="clean"/>
<nant basedir="Microsoft.VisualBasic" target="clean"/>
<!--
<nant basedir="System.Windows.Forms" target="clean"/>
-->
</target>
</project>
--0OAP2g/MAC+5xKAE
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: attachment; filename="System.Windows.Forms.build"
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- NAnt build file for System.Windows.Form.dll -->
<project name="System" default="build">
<property name="debug" value="false"/>
<target name="build">
<mkdir dir="../lib"/>
<csc target="library" output="../lib/System.Windows.Forms.dll" debug="${debug}">
<arg value="/nowarn:1595"/>
<arg value="/unsafe"/>
<arg value="/noconfig"/> <!-- don't reference ms assemblies -->
<arg value="/lib:../lib/"/>
<!-- cor compare dies with these currently -->
<!--arg value="/nostdlib"/--> <!-- don't reference mscorlib -->
<!--arg value="/r:corlib.dll"/-->
<sources>
<includes name="**/*.cs"/>
</sources>
</csc>
<!-- Once you have tests
<copy file="../lib/System.Windows.Forms.dll" tofile="Test/System.Windows.Forms.dll"/>
<nant basedir="Test" target="build"/>
-->
</target>
<!-- once you have tests...
<target name="test" depends="build">
<nant basedir="Test" target="test"/>
</target>
-->
<target name="clean">
<nant basedir="Test" target="clean"/>
<delete file="../lib/System.Windows.Forms.dll" failonerror="false"/>
</target>
</project>
--0OAP2g/MAC+5xKAE--