Update errors.txt for the new errors that only we catch.
[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="linux">
8         <property name="debug" value="false"/>
9
10         <target name="windows">
11                 <nant basedir="corlib" target="windows"/>
12                 <nant basedir="System" target="build"/>
13                 <!-- Doesn't compile, will fix later -Sean
14                         <nant basedir="System.Data" target="build"/>
15                 -->
16                 <nant basedir="System.Drawing" target="build"/>
17                 <nant basedir="System.Web" target="build"/>
18                 <nant basedir="System.XML" target="build"/>
19         </target>
20
21         <target name="linux">
22                 <nant basedir="corlib" target="linux"/>
23                 <nant basedir="System" target="build"/>
24                 <!-- Doesn't compile, will fix later -Sean
25                         <nant basedir="System.Data" target="build"/>
26                 -->
27                 <nant basedir="System.Drawing" target="build"/>
28                 <nant basedir="System.Web" target="build"/>
29                 <nant basedir="System.XML" target="build"/>
30         </target>
31
32         <target name="test">
33                 <nant basedir="corlib" target="test"/>
34                 <nant basedir="System" target="test"/>
35                 <nant basedir="System.XML" target="test"/>
36         </target>
37
38         <target name="clean">
39                 <delete failonerror="false">
40                         <fileset basedir="lib">
41                                 <includes name="*.dll"/>
42                         </fileset>
43                 </delete>
44                 <nant basedir="corlib" target="clean"/>
45                 <nant basedir="System" target="clean"/>
46                 <nant basedir="System.XML" target="clean"/>
47                 <!-- Doesn't compile, will fix later -Sean
48                         <nant basedir="System.Data" target="clean"/>
49                 -->
50         </target>
51 </project>