2002-04-23 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / library.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for class libraries -->
4 <!-- Target windows builds libraries _for_ windows -->
5 <!-- Target linux builds libraries _for_ linux -->
6
7 <project name="corlib" default="build">
8         <property name="debug" value="false"/>
9
10         <target name="build">
11                 <nant basedir="corlib" target="build"/>
12                 <nant basedir="System" target="build"/>
13                 <!--nant basedir="System.Drawing" target="build"/-->
14                 <nant basedir="System.XML" target="build"/>
15                 <nant basedir="System.Data" target="build"/>
16                 <nant basedir="System.Web" target="build"/>
17         </target>
18
19         <target name="test">
20                 <nant basedir="corlib" target="test"/>
21                 <nant basedir="System" target="test"/>
22                 <nant basedir="System.XML" target="test"/>
23         </target>
24
25         <target name="clean">
26                 <delete failonerror="false">
27                         <fileset basedir="lib">
28                                 <includes name="*.dll"/>
29                         </fileset>
30                 </delete>
31                 <nant basedir="corlib" target="clean"/>
32                 <nant basedir="System" target="clean"/>
33                 <nant basedir="System.XML" target="clean"/>
34                 <nant basedir="System.Data" target="clean"/>
35         </target>
36 </project>