Revert broken changes.
[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                 <nant basedir="System.Data" target="test"/>
24         </target>
25
26         <target name="clean">
27                 <delete failonerror="false">
28                         <fileset basedir="lib">
29                                 <includes name="*.dll"/>
30                         </fileset>
31                 </delete>
32                 <nant basedir="corlib" target="clean"/>
33                 <nant basedir="System" target="clean"/>
34                 <nant basedir="System.Drawing" target="clean"/>
35                 <nant basedir="System.XML" target="clean"/>
36                 <nant basedir="System.Data" target="clean"/>
37         </target>
38 </project>